|
Measures reported by AspNetAppCompileTest The AspNetAppCompileTest reports how well the AppDomains perform during the compilation of the aspx, asmx, ascx or ashx files, loading of assemblies, and execution of assemblies to generate the page. The measures
made by this test are as
follows:
| Measurement |
Description |
Measurement
Unit |
Interpretation |
| Compilation_total
|
The total number of compilations that have taken place during the lifetime of the current Web server process. This occurs when a file with an .aspx, .asmx, asax,.ascx, or .ashx extension or code-behind source files are dynamically compiled on the server. |
Number
|
 
|
| Preprocessing_errors
|
The rate at which configuration and parsing errors occur |
Errors/Sec
|
A consistent increase in the value of this measure could prove to be fatal for the application domain.
|
| Compilation_errors
|
The rate at which compilation errors occur. The response is cached, and this counter increments only once until recompilation is forced by a file change. |
Errors/Sec
|
 
|
| Runtime_errors
|
The rate at which run-time errors occur |
Errors/Sec
|
 
|
| Unhandled_runtime_errors
|
The rate of unhandled runtime exceptions
|
Errors/Sec
|
A consistent increase in the value of this measure could prove to be fatal for the application domain. This measure however, does not include the following:
- Errors cleared by an event handler (for example, by Page_Error or Application_Error)
- Errors handled by a redirect page
- Errors that occur within a try/catch block
|
|