Get queue statistics
GET/job/status
Retrieve statistics about the job queue.
Responses
- 200
- 401
- 403
- 500
Queue statistics.
- application/json
- Schema
- Example (from schema)
Schema
total_jobs integer
Total number of jobs in the queue.
status_counts
object
Count of jobs by status.
property name* integer
operation_counts
object
Count of jobs by operation type.
property name* integer
dlq_count integer
Number of jobs in the dead letter queue.
{
"total_jobs": 42,
"status_counts": {},
"operation_counts": {},
"dlq_count": 0
}
Unauthorized - API key required
- application/json
- Schema
- Example (from schema)
Schema
error string
A description of the error that occurred.
details string
Additional details about the error.
code integer
The error code.
{
"error": "Failed to retrieve status.",
"details": "Failed due to network timeout.",
"code": 500
}
Forbidden - Insufficient permissions
- application/json
- Schema
- Example (from schema)
Schema
error string
A description of the error that occurred.
details string
Additional details about the error.
code integer
The error code.
{
"error": "Failed to retrieve status.",
"details": "Failed due to network timeout.",
"code": 500
}
Error retrieving queue statistics.
- application/json
- Schema
- Example (from schema)
Schema
error string
A description of the error that occurred.
details string
Additional details about the error.
code integer
The error code.
{
"error": "Failed to retrieve status.",
"details": "Failed due to network timeout.",
"code": 500
}
Loading...