Thanos · Schema

LabelValuesResponse

MetricsMonitoringObservabilityPrometheusTime Series Database

Properties

Name Type Description
status string
data array List of label values
warnings array
View JSON Schema on GitHub

JSON Schema

thanos-labelvaluesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LabelValuesResponse",
  "title": "LabelValuesResponse",
  "type": "object",
  "required": [
    "status",
    "data"
  ],
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "success"
      ]
    },
    "data": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of label values"
    },
    "warnings": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}