MetricValue Constructors

Definition

Overloads

MetricValue()

Initializes a new instance of the MetricValue class.

MetricValue(DateTime, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>)

Initializes a new instance of the MetricValue class.

MetricValue()

Initializes a new instance of the MetricValue class.

public MetricValue ();
Public Sub New ()

Applies to

MetricValue(DateTime, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>, Nullable<Double>)

Initializes a new instance of the MetricValue class.

public MetricValue (DateTime timeStamp, double? average = default, double? minimum = default, double? maximum = default, double? total = default, double? count = default);
new Microsoft.Azure.Management.Monitor.Models.MetricValue : DateTime * Nullable<double> * Nullable<double> * Nullable<double> * Nullable<double> * Nullable<double> -> Microsoft.Azure.Management.Monitor.Models.MetricValue
Public Sub New (timeStamp As DateTime, Optional average As Nullable(Of Double) = Nothing, Optional minimum As Nullable(Of Double) = Nothing, Optional maximum As Nullable(Of Double) = Nothing, Optional total As Nullable(Of Double) = Nothing, Optional count As Nullable(Of Double) = Nothing)

Parameters

timeStamp
DateTime

the timestamp for the metric value in ISO 8601 format.

average
Nullable<Double>

the average value in the time range.

minimum
Nullable<Double>

the least value in the time range.

maximum
Nullable<Double>

the greatest value in the time range.

total
Nullable<Double>

the sum of all of the values in the time range.

count
Nullable<Double>

the number of samples in the time range. Can be used to determine the number of values that contributed to the average value.

Applies to