0

I'm testing placing scheduled messages onto my Azure service bus queues. No more then 10 or so in total but it seems like the statistics in my dashboard show otherwise!

It looks like it's showing thousands of incoming requests!

Question - am I not reading the chart correctly when it says 93.63k as 93,000+ ?

enter image description here

chuckd
  • 13,460
  • 29
  • 152
  • 331
  • I think you'll find that `Incoming Requests` is not the same metric as `Incoming Messages`. If you share the code you're using to read from / drop messages into the queue, it might highlight this. – Brendan Green Jul 09 '18 at 22:09
  • Refer to:https://stackoverflow.com/questions/22861571/azure-service-bus-whats-a-request-and-a-message – Joy Wang Jul 10 '18 at 05:52

1 Answers1

1

Incoming messages is the metric you need to select for determining the number of incoming messages, check the metrics list here.

As the graph by default displays the metrics of the Namespace and not the metrics of a particular Queue or Topic, the values may look high. Use dimension filter to display the metrics specific to a particular Queue or Topic.

Arunprabhu
  • 1,454
  • 9
  • 15