PercentileMetric 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
PercentileMetric() |
Initializes a new instance of the PercentileMetric class. |
PercentileMetric(Nullable<DateTime>, Nullable<DateTime>, String, String, MetricName, IList<PercentileMetricValue>) |
Initializes a new instance of the PercentileMetric class. |
PercentileMetric()
Initializes a new instance of the PercentileMetric class.
public PercentileMetric ();
Public Sub New ()
Applies to
PercentileMetric(Nullable<DateTime>, Nullable<DateTime>, String, String, MetricName, IList<PercentileMetricValue>)
Initializes a new instance of the PercentileMetric class.
public PercentileMetric (DateTime? startTime = default, DateTime? endTime = default, string timeGrain = default, string unit = default, Microsoft.Azure.Management.CosmosDB.Models.MetricName name = default, System.Collections.Generic.IList<Microsoft.Azure.Management.CosmosDB.Models.PercentileMetricValue> metricValues = default);
new Microsoft.Azure.Management.CosmosDB.Models.PercentileMetric : Nullable<DateTime> * Nullable<DateTime> * string * string * Microsoft.Azure.Management.CosmosDB.Models.MetricName * System.Collections.Generic.IList<Microsoft.Azure.Management.CosmosDB.Models.PercentileMetricValue> -> Microsoft.Azure.Management.CosmosDB.Models.PercentileMetric
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 String = Nothing, Optional name As MetricName = Nothing, Optional metricValues As IList(Of PercentileMetricValue) = Nothing)
Parameters
- timeGrain
- String
The time grain to be used to summarize the metric values.
- unit
- String
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<PercentileMetricValue>
The percentile metric values for the specified time window and timestep.
Applies to
Azure SDK for .NET