health-monitoring

ASP.NET health monitoring and performance counter

Hi all, Looking for best practice here. I know that there are multiple ways to do logging and exception handling in asp.net, for example, using enterprise library, log4net or even post sharp for AOP style logging. However, I haven't seen that many logging/exception handling articles related to health monitoring and performance counter...

ASP.Net Health Monitoring - How to check Requests Queued

I have just discovered ASP.Net Health Monitoring - it looks awesome. I have been developing ASP.Net apps for years, and have even taken the Microsoft certs and have never seen it before. I can't believe it is so hidden. It must be one of the best kept secrets of .Net... anyway, I digress. Here is my question: I would like to use ASP.Net...

Logging custom actions in asp.net mvc using built-in forms authentication

Hello, I am using the built-in forms authentication that comes with asp.net mvc. I added all the necessary tables to Sql Server using aspnet_regsql wizard and I have it all integrated and working perfect. Now I can add users, log in, perform control Authorization and all these things. The next step is to add some basic logs when a user...

SSRS and Health Monitoring

Has anyone implemented ASP.NET Health Monitoring with SSRS? I need a better solution for error notification, then SSRS currently have. Any help would be great. Thank You, ...

Are ASP.NET Health Monitoring and ELMAH alternatives of each other?

I was going to use ELMAH for our ultimate automatic error logging but recently realized that ASP.NET Health Monitoring does a same work (perhaps). Now I want to know (please) if they are alternatives of each other just like log4net and entlib? ...

Unusual request URL in ASP.NET health monitoring event

I’m seeing a rather strange occurrence in the request information section of an ASP.NET health monitoring email I hope someone can shed some light on. This is a publicly facing website which runs on infrastructure at an Indian hosting provider. Health monitoring is notifying us of server errors via automated email but every now and then ...

Is it possible to programmatically control c# health monitoring without using the web.config file?

I have developed my own custom provider for the health monitoring; however, I use parameters in the constructor and this is not allowed when using the health monitoring from the web.config file. Does anyone know if I can turn on/off the monitoring and have it watch properly through code (possibly in my global.asax file on application ...

What Python based Dashboard options exist?

I want to create a Dashboard on each server to show it's health and the results of some daily processing. I plan to hook up shell scripts and Python programs to collect the data. Instead of writing a web-based interface, I thought it would be good to use a python based web dashboard that could render the results in various business user...

Monitor memory usage of child process

I have a Linux daemon that forks a few children and monitors them for crashes (restarting as needed). It will be great if the parent could monitor the memory usage of child processes - to detect memory leaks and restart child processes when the go beyond a certain size. How can I do this? ...

WCF Web Services and native ASP.NET Health Monitoring

hi guys, I need a final answer to the following question! :-) I was wondering if you can enable Health Monitoring for WCF Web services. I'm hosting a number of services in IIS and configured it to send the team email notification when any exceptions are thrown. I feel that Health Monitoring does not work with WCF Services and that I ha...

Security Exception when using Custom ASP.NET Healthmonitoring event in medium trust

Hi, I'm using custom healthmonitoring events in ASP.NET We recently moved to a new server with default High Trust Permissions. Literature says that healthmonitoring and custom events should work under Medium or higher trust (http://msdn.microsoft.com/en-us/library/bb398933.aspx). Problem is - it doesn't. In less than full trust I get a...

Using JMX classes to notify on events over time

I've been looking at JMX for monitoring application and system metrics (partially because MBeans can accessed by various tools such as JConsole). It would seem like the classes included with JMX would be useful for things like notification when metrics have exceeded thresholds. But I'm not sure they fit with the way I want to measure the...

Health monitoring not working

I am trying to set up health monitoring on an IIS 6/ASP.NET 2 application running on Windows Server 2003. What I want to do for a first step, is getting the Application Lifetime Events in addition to the default events (as specified in C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\web.config). On my dev machine running IIS 7 as ...

Application design guidelines/practices to support app health monitoring

Hi, Can anyone point me to some application design guidelines for supporting app health monitoring? Platform windows, apps include: window services and winforms. I've searched for this topic and found references to apps but not alot about how to design/implement an app to support health monitoring. Thanx John A ...

Health Monitoring and Windows Services .NET

Can I use health monitoring with Windows Services .NET ?? I was wondering if you can enable Health Monitoring for WebSites and WCF Web services. I'm hosting a number of services in IIS and configured it to send the team email notification when any exceptions are thrown or another events. AppFabric monitoring all WCF Services. But nothin...

Azure is not responding and/or busy, now what?

We have been experiencing some intermittent Windows Azure issues with our http://odata.stackexchange.com Essentially this is what is happening: We deploy it Everything works fine for a few days The server starts playing up and will flip from "busy" to "unresponsive" Sometimes it comes out of state (3) after a few hours / days and ...

Error monitor for different applications

Currently we have many applications, where each application has its own error notification and reporting mechanism, so we clearly have many problems: Lack of consistent error monitoring across different systems/applications: different GUIs, interfaces, different messages, etc. Different approaches for error notification per application...

ASP.NET health monitoring to SQL Server fails

I've got my e-mail health monitoring working fine (removed here) but when I try to get it into SQL Server it fails. When I run the stored procedure (aspnet_WebEvent_LogEvent) manualy it works OK. But no...

Tweet meta syntax for ODLs

Hi, I am interested in the idea of using Tweets/SMS/Identica or other short text status update systems to track Observations of Daily Living (or ODLs). The basic notion is that you send status updates to Twitter or Identi.ca or perhaps just an SMS message or whatever in a format that can be later mined to show patterns. You could us...

Creating an ASP.NET diagnostics page to be pinged by Load Balancer

Our server operations team has asked the web development team (ASP.NET) to provide a URL in our application, which the load balancer can ping to perform health checks. What should be executed on this page? I think we should attempt a database connection to ensure connectivity between the web and database. Anything else? ...