Question

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.

Was it helpful?

Solution

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

OTHER TIPS

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.

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.

For EPiServer websites you may want to have a look at Live Monitor: http://www.episerver.com/add-on-store/episerver-live-monitor/

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top