Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Concurrent Users Count

Status
Not open for further replies.

RamHardikar

Programmer
Feb 16, 2001
109
GB
Hi,

Is there a way to monitor concurrent users that are connected to an application hosted on IIS. I tried adding performance counter 'Current NonAnonymous Users' but it does not show correct data.

Thanks,
Ram
 
You could use the command

netstat -an | find "80"

to find all connections to port 80. Unfortunately, Windows (unlike UNIX) lacks a unique command, so you may have redundant IPs listed.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top