Class PercentileMetricValue
- Assembly
- Microsoft.Azure.Management.CosmosDB.Fluent.dll
Represents percentile metrics values.
public class PercentileMetricValue : MetricValue
- Inheritance
-
PercentileMetricValue
- Inherited Members
Constructors
PercentileMetricValue()
Initializes a new instance of the PercentileMetricValue class.
public PercentileMetricValue()
PercentileMetricValue(double?, double?, double?, double?, DateTime?, double?, double?, double?, double?, double?, double?, double?, double?)
Initializes a new instance of the PercentileMetricValue class.
public PercentileMetricValue(double? _count = null, double? average = null, double? maximum = null, double? minimum = null, DateTime? timestamp = null, double? total = null, double? p10 = null, double? p25 = null, double? p50 = null, double? p75 = null, double? p90 = null, double? p95 = null, double? p99 = null)
Parameters
_count
double?The number of values for the metric.
average
double?The average value of the metric.
maximum
double?The max value of the metric.
minimum
double?The min value of the metric.
timestamp
DateTime?The metric timestamp (ISO-8601 format).
total
double?The total value of the metric.
p10
double?The 10th percentile value for the metric.
p25
double?The 25th percentile value for the metric.
p50
double?The 50th percentile value for the metric.
p75
double?The 75th percentile value for the metric.
p90
double?The 90th percentile value for the metric.
p95
double?The 95th percentile value for the metric.
p99
double?The 99th percentile value for the metric.
Properties
P10
Gets the 10th percentile value for the metric.
public double? P10 { get; }
Property Value
P25
Gets the 25th percentile value for the metric.
public double? P25 { get; }
Property Value
P50
Gets the 50th percentile value for the metric.
public double? P50 { get; }
Property Value
P75
Gets the 75th percentile value for the metric.
public double? P75 { get; }
Property Value
P90
Gets the 90th percentile value for the metric.
public double? P90 { get; }
Property Value
P95
Gets the 95th percentile value for the metric.
public double? P95 { get; }
Property Value
P99
Gets the 99th percentile value for the metric.
public double? P99 { get; }