3

配置运行状况监控时 eventName 属性的有效值是什么?

<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>

我的 Google-fu(和 MSDN)让我失望了,我找不到您可以订阅的所有其他默认/常见事件的列表。

4

2 回答 2

6

... aaaaa 和我们开始:MSDN,用于 healthMonitoring 的 eventMappings 元素 (令人惊讶的是,一点额外的努力和耐心可以让你走多远)

于 2009-06-25T03:47:34.987 回答
0

查看 %WINDIR%\Microsoft.NET\Framework\version\CONFIG 文件夹中的 web.config

于 2014-03-26T10:20:15.050 回答