WAS Event ID 5082
Published Jul 15 2019 01:07 PM 5,729 Views
Microsoft

If you're troubleshooting a web app hosted in IIS, and you're attaching a debugger like DebugDiag, for example, then sometimes you may encounter the below event (ID 5082) in the System Event Viewer logs:

A worker process with pid '###' that serves application pool ‘xyz' has been determined to be unhealthy (see previous event log message), but because a debugger is attached to it, the Windows Process Activation Service will ignore the error.

 

The source of this error is "WAS" which represents the Windows Process Activation Service. This is the service in-charge of starting, stopping, and keeping track of IIS worker processes, among other duties.

 

Typically, when an IIS worker process (w3wp.exe) is deemed "unhealthy," such as due to WAS health ping failures, startup/shutdown time limits being exceeded, etc., that specific process is terminated and at the same time another worker process is started to handle new requests. However, when a debugger is attached, the problematic process is allowed to continue running, and is not terminated like it normally would.

 

If you decide during troubleshooting that you want to disable this behavior and let WAS continue terminating the process like normal, but keep the debugger attached, you can set this registry value:

HKLM\SYSTEM\CurrentControlSet\Services\WAS\Parameters

REG_DWORD: DoNotCheckDebugger=1

By default, this DWORD does not exist, and its default value is zero (0).

 

This registry value is checked dynamically by WAS during the process of marking a worker process as unhealthy, so you should not need to restart any services when making the change above.

 

NOTE: this is an undocumented registry value, thus use at your own risk.

Version history
Last update:
‎Jul 15 2019 01:07 PM
Updated by: