List all available queues
List all the available queues
Response
The name of the queue
The number of partitions this queue has requested. This might be different than the number of currently active partitions as the system grows or contracts the number of partitions.
The actual number of partitions currently being services by this queue. This number will adjust as the service attempts to bring the number of partitions to match the requested_partitions
The date the queue was created
The date the queue was last updated
The name of the dead letter queue for this queue. If this is a dead letter queue then this field will be empty when retrieved via /queue.list
This is a user supplied field which could contain metadata or specify who owns this queue
The default reservation timeout for this queue. Can be overridded when a message is queued via /queue.produce
How long the message can wait in the queue regardless of attempts before it is moved to the dead letter queue.
The maximum number of times this message can be defered by a consumer before it is placed in the dead letter queue. This includes cases where the 'deadline' was exceeded and the message was retried.
How long the queue can remain empty before it's deleted by Querator. queue is never deleted if this value is empty.
Example response
[
{
"actual_partitions": 5,
"reserve_timeout": "3m",
"deadline": "24h",
"empty_deadline": "30d"
}
]