views:

322

answers:

3

I need to display how many users are browsing my site. The site is running on iis7, and we are using asp.net 3.5.

Is the number of active sessions a good way to go? The number does not need to be very accurate.

No history is needed, I just want to know how many users are "online" right now, and display that on the page itself.

+2  A: 

You can use Windows Performance counters for this (perfmon)

ASP.NET Applications > Sessions Active counter.

You can access these performance counters using the System.Diagnostics namespace.

This code worked for me:

        PerformanceCounter pc = new PerformanceCounter("ASP.NET Applications",
     "Sessions Active", "__Total__", "MYSERVERHOSTNAME.domain");

        while (true)
        {
            Console.WriteLine(pc.NextValue());
            System.Threading.Thread.Sleep(1000);
        }

I had this problem so take a look here if the counter seems too high: http://support.microsoft.com/kb/969722

David Neale
Can this be accessed programmaticaly from .Net?
Børge
I believe so - take a look in the System.Diagnostics namespace for performance counters.Take a look at this project: http://www.codeproject.com/KB/dotnet/perfcounter.aspx
David Neale
In fact, this might be a better one: http://www.geekpedia.com/tutorial211_Using-Performance-Counters-in-Csharp.html
David Neale
The webapp is running on more than one server, so I guess I'll have to make some custom code to get the combined total from the different servers..
Børge
As above, querying counters on remote servers should work. I believe it will need to run under an account with remote registry permissions.
David Neale
+1  A: 

As a general principle, you have to define what you mean by the number of users online.

For example, Sessions usually last for a predefined duration, such as 30 minutes. Depending on how long you expect users to be on your site, the duration of a session could be largely attributed to idle time when the user is not on your site.

In general you want people that have been online in the last n minutes. Sessions give you this statistic for one period of time (the configured session expiry), but there are many other time measures that would potentially be more relevant.

Geoff
+1  A: 

One way to accomplish this is to simply have the IIS logs shove their data in a table in your database instead of the local file system. This is pretty easy to configure at the web server level.

Then you could easily graph that and show usage throughout the day, current, weekly, etc.

Of course, if you have a highly trafficked site, then this would result in a tremendous amount of data collected.

Chris Lively