Amazon Lookout for Metrics · JSON Structure

Amazon Lookout For Metrics Time Series Structure

Details about a metric. A metric is an aggregation of the values of a measure for a dimension value, such as availability in the us-east-1 Region.

Type: object Properties: 3 Required: 3
Anomaly DetectionBusiness IntelligenceMachine LearningMetricsMonitoring

TimeSeries is a JSON Structure definition published by Amazon Lookout for Metrics, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

TimeSeriesId DimensionList MetricValueList

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lookout-for-metrics/refs/heads/main/json-structure/amazon-lookout-for-metrics-time-series-structure.json",
  "name": "TimeSeries",
  "description": "Details about a metric. A metric is an aggregation of the values of a measure for a dimension value, such as <i>availability</i> in the <i>us-east-1</i> Region.",
  "type": "object",
  "properties": {
    "TimeSeriesId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TimeSeriesId"
        },
        {
          "description": "The ID of the metric."
        }
      ]
    },
    "DimensionList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DimensionNameValueList"
        },
        {
          "description": "The dimensions of the metric."
        }
      ]
    },
    "MetricValueList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MetricValueList"
        },
        {
          "description": "The values for the metric."
        }
      ]
    }
  },
  "required": [
    "TimeSeriesId",
    "DimensionList",
    "MetricValueList"
  ]
}