Skip to content

stats.solid_queue

View Markdown

Solid Queue cluster statistics from the Honeybadger agent.

Source Solid Queue Category Metrics Fields 13 honeybadger-ruby

Fields

13
FieldTypeDescription
event_typestringAllowed value: stats.solid_queue.
jobs_in_progressintegerJobs currently being executed.
jobs_blockedintegerJobs blocked waiting on a concurrency limit.
jobs_failedintegerJobs in the failed state.
jobs_scheduledintegerJobs scheduled for future execution.
jobs_processedintegerTotal jobs processed (lifetime counter).
active_workersintegerNumber of active worker processes.
active_dispatchersintegerNumber of active dispatcher processes.
queuesobjectPer-queue depth keyed by queue name.
queues.*anyAdditional caller-defined keys.
request_idstringRails request UUID from the active web request context, if any. Merged globally by the Honeybadger agent.
hostnamestringServer hostname. Attached to every event by default (events.attach_hostname).
environmentstringApplication environment, e.g. "production". Attached to every event by default (events.attach_environment).

Example

{
"event_type": "stats.solid_queue",
"jobs_in_progress": 4,
"jobs_blocked": 2,
"jobs_failed": 7,
"jobs_scheduled": 156,
"jobs_processed": 184329,
"active_workers": 2,
"active_dispatchers": 1,
"queues": {
"default": {
"depth": 23
},
"mailers": {
"depth": 2
}
},
"request_id": "0f5e4bb2-3c46-4b1c-91d5-2f4e8a6b9c01",
"hostname": "worker-1.example.com",
"environment": "production"
}