AppDynamics · Schema
MetricValue
A single metric data point with statistical values for a time period.
APMApplication Performance MonitoringCiscoCloud ObservabilityDevOpsMonitoringObservabilityOpenTelemetry
Properties
| Name | Type | Description |
|---|---|---|
| startTimeInMillis | integer | The start time of this data point in Unix epoch milliseconds. |
| occurrences | integer | The number of observations in this time period. |
| current | integer | The current or last observed value. |
| min | integer | The minimum value observed in this time period. |
| max | integer | The maximum value observed in this time period. |
| count | integer | The total count of observations. |
| sum | integer | The sum of all values in this time period. |
| value | integer | The computed value based on the rollup type. |
| standardDeviation | number | The standard deviation of values in this time period. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MetricValue",
"title": "MetricValue",
"type": "object",
"description": "A single metric data point with statistical values for a time period.",
"properties": {
"startTimeInMillis": {
"type": "integer",
"format": "int64",
"description": "The start time of this data point in Unix epoch milliseconds."
},
"occurrences": {
"type": "integer",
"description": "The number of observations in this time period."
},
"current": {
"type": "integer",
"format": "int64",
"description": "The current or last observed value."
},
"min": {
"type": "integer",
"format": "int64",
"description": "The minimum value observed in this time period."
},
"max": {
"type": "integer",
"format": "int64",
"description": "The maximum value observed in this time period."
},
"count": {
"type": "integer",
"format": "int64",
"description": "The total count of observations."
},
"sum": {
"type": "integer",
"format": "int64",
"description": "The sum of all values in this time period."
},
"value": {
"type": "integer",
"format": "int64",
"description": "The computed value based on the rollup type."
},
"standardDeviation": {
"type": "number",
"format": "double",
"description": "The standard deviation of values in this time period."
}
}
}