Azure Bus Statistics / Monitoring

I want to make a dashboard that shows the status of the Azure bus queues and displays the history for "messages added to the queue", "queue length" and "processed messages", etc. Using the Azure management portal, I can see that most of these statistics are manual for each queue.

Is there a way to access the data displayed in the management portal through one of the APIs, since I want to combine data from the number of queues that we use in one interface. I searched in vain, but I do not want to register my own statistics, since this is like repeating a task that Microsoft is already doing.

Currently, with the REST API, all I see is how to get the current approximate number of messages in the queue.

+7
queue azure servicebus
source share
1 answer

There is an API for this now (not returned when the OP created the thread): https://msdn.microsoft.com/en-gb/library/azure/dn163589.aspx (REST) https://msdn.microsoft.com/en -us / library / mt348562.aspx (.NET)

In addition, I believe that it should be available through the Azure Insights API:

https://msdn.microsoft.com/en-us/library/microsoft.azure.insights.aspx

+1
source share

All Articles