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

How to chart number of IIS concurrent connections

Yosi_Neuman
DynaMight Guru
DynaMight Guru

Hi guys,

Customer monitoring their IIS with OA and request to chart the concurrent connections as shown in Performance Monitor but did not found any metric that hold this information.

Did we missed the right metric or we need to pull it with OA extension or any other way?

Here is a screen shot of the desired metric from PerfMon

Yosi_Neuman_0-1649924568561.png

Thanks in advance for your inputs 

All the best and stay safe

Yos

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

jetnyyanks
Participant

I am looking for the same thing.  @Yosi_Neuman, were you able to figure it out?

 

Hi @jetnyyanks ,

Yep, we created WMI extension that pulls this information from PerfMon.

Here is the WMI extension yaml we used:

  - group: PerfMon
    interval:
      minutes: 1
    dimensions:
      - key: host
        value: this:device.host
    subgroups:
      - subgroup: Connections
        query: SELECT Name, CurrentConnections FROM Win32_PerfFormattedData_W3SVC_WebService WHERE Name LIKE '_Total'
        metrics:
          - key: custom.demo.host-observability.host.connections.current
            value: column:CurrentConnections

And this is the metric we see in dynatrace

Yosi_Neuman_0-1657171642283.png

HTH

Yos 

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

Featured Posts