SAP HANA · Schema

MetricDataPoint

A single metric data point at a specific timestamp.

AnalyticsCloudDatabaseEnterpriseIn-Memory

Properties

Name Type Description
timestamp string ISO 8601 timestamp for the data point.
value number The metric value at the given timestamp.
min number The minimum value observed during the aggregation interval.
max number The maximum value observed during the aggregation interval.
avg number The average value observed during the aggregation interval.
View JSON Schema on GitHub

JSON Schema

sap-hana-cloud-rest-metric-data-point-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MetricDataPoint",
  "type": "object",
  "description": "A single metric data point at a specific timestamp.",
  "properties": {
    "timestamp": {
      "type": "string",
      "description": "ISO 8601 timestamp for the data point."
    },
    "value": {
      "type": "number",
      "description": "The metric value at the given timestamp."
    },
    "min": {
      "type": "number",
      "description": "The minimum value observed during the aggregation interval."
    },
    "max": {
      "type": "number",
      "description": "The maximum value observed during the aggregation interval."
    },
    "avg": {
      "type": "number",
      "description": "The average value observed during the aggregation interval."
    }
  }
}