Thanos · Schema

ErrorResponse

Error response returned when a request cannot be processed.

MetricsMonitoringObservabilityPrometheusTime Series Database

Properties

Name Type Description
status string
error string Human-readable error message.
View JSON Schema on GitHub

JSON Schema

thanos-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "description": "Error response returned when a request cannot be processed.",
  "required": [
    "status",
    "error"
  ],
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "error"
      ]
    },
    "error": {
      "type": "string",
      "description": "Human-readable error message."
    }
  }
}