AWS CloudWatch · Schema
Datapoint
Encapsulates the statistical data that CloudWatch computes from metric data.
AlarmsAwsDashboardsLogsMetricsMonitoringObservability
Properties
| Name | Type | Description |
|---|---|---|
| Timestamp | string | The time stamp used for the data point. |
| SampleCount | number | The number of metric values that contributed to the aggregate value of this data point. |
| Average | number | The average of the metric values that correspond to the data point. |
| Sum | number | The sum of the metric values for the data point. |
| Minimum | number | The minimum metric value for the data point. |
| Maximum | number | The maximum metric value for the data point. |
| ExtendedStatistics | object | The percentile statistic for the data point. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Datapoint",
"type": "object",
"description": "Encapsulates the statistical data that CloudWatch computes from metric data.",
"properties": {
"Timestamp": {
"type": "string",
"description": "The time stamp used for the data point."
},
"SampleCount": {
"type": "number",
"description": "The number of metric values that contributed to the aggregate value of this data point."
},
"Average": {
"type": "number",
"description": "The average of the metric values that correspond to the data point."
},
"Sum": {
"type": "number",
"description": "The sum of the metric values for the data point."
},
"Minimum": {
"type": "number",
"description": "The minimum metric value for the data point."
},
"Maximum": {
"type": "number",
"description": "The maximum metric value for the data point."
},
"ExtendedStatistics": {
"type": "object",
"description": "The percentile statistic for the data point."
}
}
}