Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Adding to Max Toro's solution and for the curious, this seems to be the way one would add back 4006 to 4011:</p> <pre><code>&lt;healthMonitoring enabled="true"&gt; &lt;providers&gt; &lt;add name="EventLogProvider" type="System.Web.Management.EventLogWebEventProvider,System.Web,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a"/&gt; &lt;/providers&gt; &lt;eventMappings&gt; &lt;!-- Event Mappings for 0-4004 and 4006 to infinite, skipping 4005, see last attribute of these entries --&gt; &lt;add name="Failure Audits 1" type="System.Web.Management.WebFailureAuditEvent,System.Web,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a" startEventCode="0" endEventCode="4004"/&gt; &lt;add name="Failure Audits 2" type="System.Web.Management.WebFailureAuditEvent,System.Web,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a" startEventCode="4006" endEventCode="2147483647"/&gt; &lt;/eventMappings&gt; &lt;rules&gt; &lt;!-- REMOVE ITEMS NOTED BY MAX --&gt; &lt;remove name="Failure Audits Default"/&gt; &lt;!-- ADD Back 4006 to 4011 with these two entries, skipping over 4005 --&gt; &lt;add name="Failure Audits Default 1" eventName="Failure Audits 1" provider="EventLogProvider" profile="Default" minInstances="1" maxLimit="Infinite" minInterval="00:01:00" custom=""/&gt; &lt;add name="Failure Audits Default 2" eventName="Failure Audits 2" provider="EventLogProvider" profile="Default" minInstances="1" maxLimit="Infinite" minInterval="00:01:00" custom=""/&gt; &lt;/rules&gt; &lt;/healthMonitoring&gt; </code></pre> <p>Seems to work for me.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload