cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Extension 2.0 WMI collect ASP.net V4 information

Yosi_Neuman
DynaMight Guru
DynaMight Guru

Hi guys,

Customer asks to collect the follows information from Perfmon

Yosi_Neuman_0-1662387516159.png

We do see the information from Perfmon it self but the Get-WmiObejct always returns 0

Yosi_Neuman_1-1662387607085.png

The query we use is: 

Get-WmiObject -Query "select RequestExecutionTime,RequestsInApplicationQueue,RequestsPerSec from Win32_PerfRawData_ASPNET4030319_ASPNETAppsv4030319"

Any suggestions how to pull the numbers we see from Perfmon with Get-WmiObject in order to use it with in the WMI extension?

Thanks in advance for your inputs here 

Yos 

dynatrace certificated professional - dynatrace master partner - Matrix Soft Ware Division - Israel
4 REPLIES 4

ChadTurner
DynaMight Legend
DynaMight Legend

@Yosi_Neuman were you able to target those numbers?

 

-Chad

Nop @ChadTurner , its look like a bug / feature from WMI that is not able to fetch those metrics. 😱

Customer tried to get answers from Microsoft without any luck

Yos

dynatrace certificated professional - dynatrace master partner - Matrix Soft Ware Division - Israel

jegron
DynaMight Pro
DynaMight Pro

Hi @Yosi_Neuman ,

Did you try PerfFormattedData unstead of PerfRawData ?

Observability Engineer at Phenisys - Dynatrace Professional

Hi @jegron 

Thanks !

Get-WmiObject -Class Win32_PerfFormattedData_W3SVC_WebService -ComputerName XXXXXXXXXX | Where {$_.Name -eq "_Total"} | % {$_.CurrentConnections}

Work as a charm !!

Yos

dynatrace certificated professional - dynatrace master partner - Matrix Soft Ware Division - Israel

Featured Posts