MetricColumn

A single metric column within a metric group.

Cloud ManagementDatabase ManagementEnterprise ManagementInfrastructure ManagementMonitoringOracle

Properties

Name Type Description
columnName string Name of the metric column.
displayName string Human-readable display name.
columnType string Data type of the metric column.
isKey boolean Whether this column is a key column.
unit string Unit of measurement for the metric.
View JSON Schema on GitHub

JSON Schema

oracle-enterprise-manager-metriccolumn-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetricColumn",
  "title": "MetricColumn",
  "type": "object",
  "description": "A single metric column within a metric group.",
  "properties": {
    "columnName": {
      "type": "string",
      "description": "Name of the metric column.",
      "example": "example_value"
    },
    "displayName": {
      "type": "string",
      "description": "Human-readable display name.",
      "example": "example_value"
    },
    "columnType": {
      "type": "string",
      "description": "Data type of the metric column.",
      "enum": [
        "NUMBER",
        "STRING"
      ],
      "example": "NUMBER"
    },
    "isKey": {
      "type": "boolean",
      "description": "Whether this column is a key column.",
      "example": true
    },
    "unit": {
      "type": "string",
      "description": "Unit of measurement for the metric.",
      "example": "example_value"
    }
  }
}