Monitoring application to track performance of .net service in production?

Have a look at AlertGrid it's a tool for tracing custom metrics/statistics of your app and raising alerts. Your app has to send events to AlertGrid (a very easy integration thru a simple API), then you can visualize metrics sent in those events and create rules e.g. "if metric A > 30 and B in 3,4,5 then send SMS to X and email to Y.

Have a look at AlertGrid, it's a tool for tracing custom metrics/statistics of your app and raising alerts. Your app has to send events to AlertGrid (a very easy integration thru a simple API), then you can visualize metrics sent in those events and create rules e.g. "if metric A > 30 and B in 3,4,5 then send SMS to X and email to Y".

JetBrains's dotTrace Performance should do all that, maybe not alerts, but it's commercial software unless you run an open source software. I'm starting to learn it. jetbrains.com/profiler.

We use dotTrace during development and testing but you cannot use a profiler in production. I also don't need method / line accuracy, I'm more interested in transaction / remote method call monitoring – Luca Martinetti Oct 10 '10 at 22:05.

You can create your own custom performance counters and use them. All exceptions can also be handled with your own log facility that handles the performance counter aspect and logs the exceptions in the appropriate windows event log as well. It was not a gigantic undertaking as far as I remember when we implemented it and from that point on you can use almost any tool to collect and analyze data, find correlations between counters, etc.(It is nice to have e.g. CPU/Disk/network utilization and method call info on the same chart in perflog.

) As for method call times, it can be implemented by making use of QueryPerformanceCounter in a custom sink if you have a remoting solution or some custom binding if you are working with WCF. I guess you can easily find great resources on all topics - creating a custom perf counter, using QPF to time method calls, creating entries in the system logs with custom sources, using custom bindings for various purposes, etc.- with some research.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions