Oracle Cloud Infrastructure · JSON Structure

Monitoring Summarize Metrics Data Details Structure

Details for summarizing metrics data.

Type: object Properties: 5 Required: 2
Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service

SummarizeMetricsDataDetails is a JSON Structure definition published by Oracle Cloud Infrastructure, describing 5 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

namespace query startTime endTime resolution

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/oracle-cloud/refs/heads/main/json-structure/monitoring-summarize-metrics-data-details-structure.json",
  "name": "SummarizeMetricsDataDetails",
  "description": "Details for summarizing metrics data.",
  "type": "object",
  "properties": {
    "namespace": {
      "type": "string",
      "description": "The metric namespace.",
      "example": "oci_computeagent"
    },
    "query": {
      "type": "string",
      "description": "The Monitoring Query Language expression.",
      "example": "CpuUtilization[1m].mean()"
    },
    "startTime": {
      "type": "datetime",
      "description": "Start of the time range.",
      "example": "2026-04-18T10:30:00Z"
    },
    "endTime": {
      "type": "datetime",
      "description": "End of the time range.",
      "example": "2026-04-18T10:30:00Z"
    },
    "resolution": {
      "type": "string",
      "description": "The time interval for aggregation.",
      "example": "1m"
    }
  },
  "required": [
    "namespace",
    "query"
  ]
}