We have a ASP Classic Web site Running on IIS 6. What is the cleanest way to record the number concurrent users? We need this data over a period of time, and a way to sum it across servers would be great. What do you suggest?
Asked
Active
Viewed 345 times
1 Answers
1
The Web Services object in Performance Monitor has counters for number of current connections (and some others that might be useful - current anonymous users, current nonanonymous users, anonymous users/sec, etc.). You could setup the counters, then pull the data from each server into Excel to combine and analyze.

MattB
- 11,194
- 1
- 30
- 36
-
I take it that Web Services in this case doesn't refer to SOAP? – C. Ross Aug 04 '09 at 18:39
-
1No, nothing to do with SOAP/etc. It is just the name in perfmon for (some of) the IIS related counters. – MattB Aug 04 '09 at 19:08