Query Queue Status
This API provides an endpoint to fetch metrics for Rodin queues. The metrics include the number of consumers, jobs awaiting processing, and jobs currently running for each queue.
Request
Note: All requests to this endpoint must include a valid token in the Authorization header for authentication.
Authentication
This API uses a bearer key for authentication. You need to include a valid token in the Authorization header for all requests. Refer to the Login section for how to get an API key for your account.
Endpoint
GET
/api/v2/queue_status_check
Parameters
No parameters are required for this request.
Response
The response is a JSON object containing metrics for each queue. Each queue's metrics include:
consumers
: The number of consumers listening to the queue.job_awaiting
: The number of jobs waiting to be processed.job_running
: The number of jobs currently being processed.
Example Response
Examples
Last updated