Azure Monitor · Schema

MetricResultsResponse

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
starttime string The start time, in datetime format, for which the data was retrieved.
endtime string The end time, in datetime format, for which the data was retrieved.
interval string The interval (window size) for which the metric data was returned.
namespace string The namespace of the metrics being queried.
resourceregion string The region of the resource being queried for metrics.
resourceid string The resource ID for which metrics were retrieved.
value array The value of the collection.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-metricresultsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetricResultsResponse",
  "title": "MetricResultsResponse",
  "type": "object",
  "properties": {
    "starttime": {
      "type": "string",
      "description": "The start time, in datetime format, for which the data was retrieved."
    },
    "endtime": {
      "type": "string",
      "description": "The end time, in datetime format, for which the data was retrieved."
    },
    "interval": {
      "type": "string",
      "description": "The interval (window size) for which the metric data was returned."
    },
    "namespace": {
      "type": "string",
      "description": "The namespace of the metrics being queried."
    },
    "resourceregion": {
      "type": "string",
      "description": "The region of the resource being queried for metrics."
    },
    "resourceid": {
      "type": "string",
      "description": "The resource ID for which metrics were retrieved."
    },
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Metric"
      },
      "description": "The value of the collection."
    }
  }
}