tags:

views:

1473

answers:

2

We have a WCF service with multiple TCP endpoints. I am interested in monitoring the total number of concurrent open connections at any given time. Are there any perfmon counters that will allow us to do this out of the box? Note that number of instances != number of connections in our case.

+1  A: 

Use the netstat command to view open tcp connections

http://technet.microsoft.com/en-us/library/bb490947.aspx

+1  A: 

If you prefer to use PerfMon, have a look at these performance counters.

Enrico Campidoglio