Cribl · Schema

HealthStatus

ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
status string The health status of the server
version string The Cribl software version
build string The build identifier
View JSON Schema on GitHub

JSON Schema

cribl-healthstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HealthStatus",
  "title": "HealthStatus",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "The health status of the server",
      "enum": [
        "healthy",
        "degraded",
        "unhealthy"
      ]
    },
    "version": {
      "type": "string",
      "description": "The Cribl software version"
    },
    "build": {
      "type": "string",
      "description": "The build identifier"
    }
  }
}