Table of Contents

Class MetricValue

Namespace
Microsoft.Azure.Management.CosmosDB.Fluent.Models
Assembly
Microsoft.Azure.Management.CosmosDB.Fluent.dll

Represents metrics values.

public class MetricValue
Inheritance
MetricValue
Derived
Inherited Members

Constructors

MetricValue()

Initializes a new instance of the MetricValue class.

public MetricValue()

MetricValue(double?, double?, double?, double?, DateTime?, double?)

Initializes a new instance of the MetricValue class.

public MetricValue(double? _count = null, double? average = null, double? maximum = null, double? minimum = null, DateTime? timestamp = null, double? total = 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.

Properties

Average

Gets the average value of the metric.

public double? Average { get; }

Property Value

double?

Maximum

Gets the max value of the metric.

public double? Maximum { get; }

Property Value

double?

Minimum

Gets the min value of the metric.

public double? Minimum { get; }

Property Value

double?

Timestamp

Gets the metric timestamp (ISO-8601 format).

public DateTime? Timestamp { get; }

Property Value

DateTime?

Total

Gets the total value of the metric.

public double? Total { get; }

Property Value

double?

_count

Gets the number of values for the metric.

public double? _count { get; }

Property Value

double?