Determining how many messages are on the Azure Service Bus Queue

后端 未结 9 846
难免孤独
难免孤独 2020-12-09 15:52

I know there is a way to determine the number of messages (or approximate number) in the Azure Queue (Store Account); however is there a way to query for the number of pendi

9条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-09 16:29

    Here's a PowerShell example to continually eyeball the queue length as used in Azure Portal Cloud Shell

    cd "Azure:\\"
    while (1) {(Get-AzureRmServiceBusQueue -ResourceGroup  -NamespaceName  -QueueName ).CountDetails | Select -expand ActiveMessageCount}
    

提交回复
热议问题