Reputation: 413
I want to find some Application that could tell me some statistics information about every thing that happen in my server application...
I have a web application written with C#.net and sqlserver ,it sets up on winsows Server 2008R2 and works on LAN,I want to find out witch process take too long,or every process cycle on server,How could monitor this things?
Upvotes: 1
Views: 254
Reputation: 413
thanks all.I Finaly find the microsoft Advanced Logging,it is great tools for IIS ,after that I could Analyze the result with WebLogExpert and sql server so nice.the link that help me is here :
Upvotes: 0
Reputation: 1737
I'm not sure of an all-encompassing solution, but I know there are several packages out there that allow you monitor and log various events in your ASP.NET application.
Off the top of my head, ELMAH is a relatively drop-in-able solution that has alot of pluggable logging facilities. You can drop it in with Nuget.
ASP.NET also comes with its own application health monitoring tools, simply called ASP.NET Health Monitoring. Haven't worked much with that, but it may be a useful tool.
Upvotes: 1