CockroachDB · Schema

LogExportClusterInfo

Log export configuration and status for a cluster.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
cluster_id string ID of the cluster this log export configuration applies to.
status string Current status of the log export configuration.
spec object Log export specification including destination and groups.
View JSON Schema on GitHub

JSON Schema

cockroachdb-logexportclusterinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LogExportClusterInfo",
  "title": "LogExportClusterInfo",
  "type": "object",
  "description": "Log export configuration and status for a cluster.",
  "properties": {
    "cluster_id": {
      "type": "string",
      "description": "ID of the cluster this log export configuration applies to."
    },
    "status": {
      "type": "string",
      "description": "Current status of the log export configuration."
    },
    "spec": {
      "type": "object",
      "description": "Log export specification including destination and groups."
    }
  }
}