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
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}