12 Apr 2023 12:27 PM - last edited on 13 Apr 2023 07:29 AM by MaciejNeumann
Hi Folks,
Does anyone have expereince on MSMQ monitoring with DT extension Microsoft Message Queuing (MSMQ) | Dynatrace Hub. Is it possible to monitor the public queues beside the private queues?
Thanks in advance.
Mizső
Solved! Go to Solution.
13 Apr 2023 08:24 AM
Hi @Mizső !
This extension is quite simple. It runs this query :
SELECT Name, MessagesinQueue, BytesInQueue FROM Win32_PerfRawData_msmq_MSMQQueue
So you can run it on the server to check if the required data is returned :
Get-WmiObject -query "SELECT Name, MessagesinQueue, BytesInQueue FROM Win32_PerfRawData_msmq_MSMQQueue"
Is is possible you have to use Win32_PerfFormattedData_msmq_MSMQQueue to get the right value.
Does it help ?