Metric Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Metric() |
Initializes a new instance of the Metric class. |
Metric(Nullable<DateTime>, Nullable<DateTime>, String, UnitType, MetricName, IList<MetricValue>) |
Initializes a new instance of the Metric class. |
Metric()
Initializes a new instance of the Metric class.
public Metric ();
Public Sub New ()
Applies to
Metric(Nullable<DateTime>, Nullable<DateTime>, String, UnitType, MetricName, IList<MetricValue>)
Initializes a new instance of the Metric class.
public Metric (DateTime? startTime = default, DateTime? endTime = default, string timeGrain = default, Microsoft.Azure.Management.CosmosDB.Fluent.Models.UnitType unit = default, Microsoft.Azure.Management.CosmosDB.Fluent.Models.MetricName name = default, System.Collections.Generic.IList<Microsoft.Azure.Management.CosmosDB.Fluent.Models.MetricValue> metricValues = default);
new Microsoft.Azure.Management.CosmosDB.Fluent.Models.Metric : Nullable<DateTime> * Nullable<DateTime> * string * Microsoft.Azure.Management.CosmosDB.Fluent.Models.UnitType * Microsoft.Azure.Management.CosmosDB.Fluent.Models.MetricName * System.Collections.Generic.IList<Microsoft.Azure.Management.CosmosDB.Fluent.Models.MetricValue> -> Microsoft.Azure.Management.CosmosDB.Fluent.Models.Metric
Public Sub New (Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional timeGrain As String = Nothing, Optional unit As UnitType = Nothing, Optional name As MetricName = Nothing, Optional metricValues As IList(Of MetricValue) = Nothing)
Parameters
- timeGrain
- String
The time grain to be used to summarize the metric values.
- unit
- UnitType
The unit of the metric. Possible values include: 'Count', 'Bytes', 'Seconds', 'Percent', 'CountPerSecond', 'BytesPerSecond', 'Milliseconds'
- name
- MetricName
The name information for the metric.
- metricValues
- IList<MetricValue>
The metric values for the specified time window and timestep.
Applies to
Azure SDK for .NET