Cribl · Schema

DestinationStatus

ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry

Properties

Name Type Description
id string The destination identifier
status string The current operational status
numEvents integer Number of events processed
numBytes integer Number of bytes processed
View JSON Schema on GitHub

JSON Schema

cribl-destinationstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DestinationStatus",
  "title": "DestinationStatus",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The destination identifier"
    },
    "status": {
      "type": "string",
      "description": "The current operational status",
      "enum": [
        "active",
        "inactive",
        "error"
      ]
    },
    "numEvents": {
      "type": "integer",
      "description": "Number of events processed"
    },
    "numBytes": {
      "type": "integer",
      "description": "Number of bytes processed"
    }
  }
}