Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Monitoring load on ASP.NET Application

I am looking for ways to keep track of simultaneous users within an application. I cannot use IIS logs due to a load balancer that abstracts the users IP address. I am looking for a .NET code based solution or a configuration item, possibly with health monitoring to be able to track the "true" simultaneous user count.

I know that I can monitor the number of sessions, but that isn't really an ideal method to show, as it can be bloated based on the number of sessions with users abandoning their session.

like image 791
Mitchel Sellers Avatar asked Dec 15 '08 17:12

Mitchel Sellers


1 Answers

There is a similiar question here: Tools and methods for live-monitoring ASP.NET web applications?

I found an advanced logging tool for debugging and monitoring .NET applications: SmartInspect. But I don't know if it meets your requirements.

like image 70
splattne Avatar answered Sep 28 '22 13:09

splattne