Tips for monitoring your queues
Note: Be sure to set up your authentication token before following the steps to create a queue by submitting an API request from the terminal.
Use the following procedures to get queue statistics, including the number of messages that exist in the queue, and the number of messages for each message status.
Monitor through the API
Send the following request to get queue statistics:
GET /v1/queues/fizbit/stats HTTP/1.1
Host: marconi.example.com
The response should look similar to the following:
HTTP:/1.1 200 OK
{
"messages": {
"free": 146929,
"claimed": 2409,
"total": 149338,
"oldest": {
"href": "/v1/queues/fizbit/messages/50b68a50d6f5b8c8a7c62b01",
"age": 63,
"created": "2013-08-12T20:44:55Z"
},
"newest": {
"href": "/v1/queues/fizbit/messages/50b68a50d6f5b8c8a7c62b01",
"age": 12,
"created": "2013-08-12T20:45:46Z"
}
}
Monitor through the Cloud Control Panel
You can view statistics for a queue in the Cloud Control Panel.
-
Log in to the Cloud Control Panel.
-
In the top navigation bar, click Servers > Message Queueing.
-
Click on a queue name to go to the Queue Details page.
Note: If total is 0, the display does not include statistics for oldest and newest messages.
You can find more developer information in the Getting Started Guide and API Developer Guide for Cloud Queues.
Updated 12 months ago