Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 362
StackOverflowVeryHelpful Avatar asked Sep 01 '25 03:09

StackOverflowVeryHelpful


1 Answers

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

like image 160
Adam Tuliper Avatar answered Sep 02 '25 18:09

Adam Tuliper