StackOverflowVeryHelpful
StackOverflowVeryHelpful

Reputation: 2427

Performance counter for Number of ports in use for making a connection

I am using this command to identify the number of ports in use

netstat -anob

Is there a performance counter that i can use so that i can plot a graph on perfmon and see what happens when the number of requests per second increases?

Upvotes: 4

Views: 5901

Answers (1)

Adam Tuliper
Adam Tuliper

Reputation: 30152

Yes - you'll want to look at TCPv4/Connections Established. Note that this will be different than the IIS perf counters - not sure if you want system or IIS.

https://technet.microsoft.com/en-us/library/cc787094(v=ws.10).aspx

Upvotes: 2

Related Questions