12 Apr 2023
04:27 AM
- last edited on
12 Apr 2023
11:29 PM
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.
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 ?