Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

HOW TO: Monitor ASP.NET Server Applications


View products that this article applies to.

Summary

This step-by-step article describes how to monitor ASP.NET server applications. There are several ways to monitor ASP.NET applications. Monitoring a single application by using multiple methods provides additional assurance that an application is functioning and that all monitoring systems are working correctly. This article describes the major aspects of an ASP.NET application that can be monitored.



Services

The services that follow are required for ASP.NET applications. If either of these services is stopped, ASP.NET applications do not function.
  • IIS Admin Service
  • World Wide Web Publishing Service



Processes

The processes that follow are required for ASP.NET applications that run on Microsoft Internet Information Services (IIS) version 5.0. If either of these processes is not present, ASP.NET applications do not function.
  • Inetinfo.exe
  • Aspnet_wp.exe
The processes that follow are required for ASP.NET applications that run on IIS version 6.0. If either of these processes is not present, ASP.NET applications do not function.
  • Inetinfo.exe
  • W3wp.exe



HTTP Responsiveness

The most effective mechanism you can use to monitor ASP.NET applications is to simulate client browser requests. Then, you must verify that a valid response is returned by the server. Ideally, the mechanism that you use to monitor will issue HTTP requests and then trigger an alarm that is based on one or more of the following criteria:
  • A key phrase does not appear in the response of the ASP.NET server.
  • The HTTP response to a request for a valid page is returned in a specified time. For example, the specified time may be less than one second.
  • The HTTP response code to a request for a valid page is 200. This indicates a successful response.
  • The HTTP response code to a request for a page that must be hidden (such as Web.config) is 500. This indicates a server error.
  • The ASP.NET_SessionID cookie is included in the response (when the application uses ASP.NET sessions).



Performance Counters

You can monitor the following counters to see problems with ASP.NET applications. The specific threshold that you use to trigger an alarm may vary based on the application.
Performance ObjectPerformance CounterSymptom of Problem
ASP.NETApplications RunningThe number changes.
ASP.NETRequests RejectedThe number increases to more than zero.
ASP.NETErrors TotalThe number increases to more than zero or another specified threshold.


↑ Back to the top


References

For more information about performance counters for ASP.NET, see the .NET Framework SDK documentation or visit the following Microsoft Web site:

http://msdn.microsoft.com/library/en-us/cpguide/html/cpconperformancecountersforaspnet.asp

↑ Back to the top


Properties

Retired KB Content Disclaimer
This article was written about products for which Microsoft no longer offers support. Therefore, this article is offered "as is" and will no longer be updated.

↑ Back to the top


Keywords: KB815169, kbhowtomaster, kbhttpruntime, kbconfig, kbwebserver, kbwebservices

↑ Back to the top

Article Info
Article ID : 815169
Revision : 7
Created on : 4/30/2003
Published on : 4/30/2003
Exists online : False
Views : 361