CockroachDB · Schema

DatadogMetricExportInfo

Datadog metric export configuration for a cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
cluster_id string ID of the cluster this configuration applies to.
status string Current status of Datadog metric export.
site string Datadog site to export metrics to.
View JSON Schema on GitHub

JSON Schema

cockroachdb-datadogmetricexportinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatadogMetricExportInfo",
  "title": "DatadogMetricExportInfo",
  "type": "object",
  "description": "Datadog metric export configuration for a cluster.",
  "properties": {
    "cluster_id": {
      "type": "string",
      "description": "ID of the cluster this configuration applies to."
    },
    "status": {
      "type": "string",
      "description": "Current status of Datadog metric export."
    },
    "site": {
      "type": "string",
      "description": "Datadog site to export metrics to."
    }
  }
}