MetricValue interface
Represents a metric value.
Properties
average | the average value in the time range. |
count | the number of samples in the time range. Can be used to determine the number of values that contributed to the average value. |
maximum | the greatest value in the time range. |
minimum | the least value in the time range. |
time |
the timestamp for the metric value in ISO 8601 format. |
total | the sum of all of the values in the time range. |
Property Details
average
the average value in the time range.
average?: number
Property Value
number
count
the number of samples in the time range. Can be used to determine the number of values that contributed to the average value.
count?: number
Property Value
number
maximum
the greatest value in the time range.
maximum?: number
Property Value
number
minimum
the least value in the time range.
minimum?: number
Property Value
number
timeStamp
the timestamp for the metric value in ISO 8601 format.
timeStamp: Date
Property Value
Date
total
the sum of all of the values in the time range.
total?: number
Property Value
number