MetricGroup

Defines a group of related metrics collected for a target. Each metric group has a name, collection frequency, and a set of metric columns.

Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle

Properties

Name Type Description
metricGroupName string Unique name of the metric group.
displayName string Human-readable display name.
description string Description of what this metric group measures.
collectionFrequency integer Collection interval in seconds.
metricColumns array List of metric columns in this group.
View JSON Schema on GitHub

JSON Schema

oracle-enterprise-manager-metricgroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetricGroup",
  "title": "MetricGroup",
  "type": "object",
  "description": "Defines a group of related metrics collected for a target. Each metric group has a name, collection frequency, and a set of metric columns.",
  "properties": {
    "metricGroupName": {
      "type": "string",
      "description": "Unique name of the metric group.",
      "example": "example_value"
    },
    "displayName": {
      "type": "string",
      "description": "Human-readable display name.",
      "example": "example_value"
    },
    "description": {
      "type": "string",
      "description": "Description of what this metric group measures.",
      "example": "A sample description."
    },
    "collectionFrequency": {
      "type": "integer",
      "description": "Collection interval in seconds.",
      "example": 10
    },
    "metricColumns": {
      "type": "array",
      "description": "List of metric columns in this group.",
      "items": {
        "$ref": "#/components/schemas/MetricColumn"
      },
      "example": []
    }
  }
}