Skip to content

Job Queue

Module: job_queue (default)
API Endpoint: /server/job_queue/status

Collects the current job queue length from Moonraker.

Metrics

MetricTypeDescription
klipper_job_queue_lengthGaugeNumber of jobs currently in the queue
klipper_job_queue_state_infoGauge=1Queue state (ready, loading, starting, paused) with state label

Example PromQL

promql
# Current queue length
klipper_job_queue_length

# Alert if queue is growing
rate(klipper_job_queue_length[5m]) > 0

# Current queue state
klipper_job_queue_state_info

Released under the MIT License.