views:

110

answers:

1

What are the valid values for the eventName attribute when configuring Health Monitoring?

<system.web>
  ...
  <healthMonitoring enabled="true" heartbeatInterval="0">
  <providers>
    <add
      name="exampleMailWebEventProvider"
      type="System.Web.Management.SimpleMailWebEventProvider"
      to="[email protected]"
      from="[email protected]"
      buffer="false"
      subjectPrefix="[Exception] " />
  </providers>

  <rules>
    <add
      name="Testing Mail Event Providers"
      eventName="All Events"
      provider="exampleMailWebEventProvider"
      profile="Default"
      minInstances="1"
      maxLimit="Infinite"
      minInterval="00:01:00"
      custom="" />
  </rules>
</healthMonitoring>

My Google-fu (and MSDN) has failed me, and I can't find a list of all the other default/common events you can subscribe to.

+1  A: 

... aaaaaand here we go: MSDN, eventMappings Element for healthMonitoring (amazing how far a little extra effort and patience can get you)

Jakob Gade