Cribl · Schema
Job
ConfigurationData LakeData PipelinesData RoutingEdge ComputingInfrastructure as CodeObservabilitySearchSecurity DataStream ProcessingTelemetry
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the job |
| collector | string | The collector ID that initiated this job |
| status | string | The current job status |
| startTime | integer | Job start time as a Unix timestamp |
| endTime | integer | Job end time as a Unix timestamp |
| result | object | Job result details |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Job",
"title": "Job",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the job"
},
"collector": {
"type": "string",
"description": "The collector ID that initiated this job"
},
"status": {
"type": "string",
"description": "The current job status",
"enum": [
"running",
"completed",
"failed",
"cancelled"
]
},
"startTime": {
"type": "integer",
"description": "Job start time as a Unix timestamp"
},
"endTime": {
"type": "integer",
"description": "Job end time as a Unix timestamp"
},
"result": {
"type": "object",
"description": "Job result details",
"properties": {
"numEvents": {
"type": "integer",
"description": "Number of events collected"
},
"numBytes": {
"type": "integer",
"description": "Number of bytes collected"
},
"numErrors": {
"type": "integer",
"description": "Number of errors encountered"
}
}
}
}
}