ASP.NET Health Monitoring configuration, valid values for the "eventName" attribute
asp.net, health-monitoring
Solution
... aaaaaand here we go: MSDN, eventMappings Element for healthMonitoring (amazing how far a little extra effort and patience can get you)
Problem
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@example.com" from="error@example.com" 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.