Skip to main content

Posts

Showing posts with the label WMI

Building Web Application for Monitoring (ASP.NET Web Events, WMI, Performance Counters)

Customizing Event Analysis : After deployment to make the life of administrators easy, ASP.NET provides the following facilities: * Monitor Live ASP.NET Application individually or across Web Farm. * Diagnose an application that appears to be failing. * Log events which are not exception but useful for investigation. Ways to notify Administrator about the errors: Through Event Log , E-Mail notification , Event stored in database . Other helpful events could be : 1 . Starting or Ending a Web Application 2 . Successful and unsuccessful authentication attempts 3 . ASP.NET errors 4 . Custom Application Events In ASP.NET All Errors and Failure Audits events are enabled. Other ASP.NET Event Providers and Web Events are: ASP.NET Event Provider : Event Provider Description EventLogWebEventProvider Writes Web event data to the Windows event log. By default, this provider is configured to write all err...