healthMonitoring 的 rules 的 add 元素(ASP.NET 设置架构)
更新:2007 年 11 月
将事件映射到它的提供程序。
此元素是 .NET Framework 2.0 版中的新元素。
<configuration> 元素
system.web 元素(ASP.NET 设置架构)
healthMonitoring 元素(ASP.NET 设置架构)
healthMonitoring 的 rules 元素(ASP.NET 设置架构)
healthMonitoring 的 rules 的 add 元素(ASP.NET 设置架构)
<add name="rule's name"
eventName="event name"
custom="String"
profile="profile name"
provider="provider name"
minInstances="number"
maxLimit="number"
minInterval="minimum duration between firing of events "/>
属性和元素
下面几部分描述了本节涉及的属性、子元素和父元素。
属性
属性 |
说明 |
---|---|
name |
必选的 String 属性。 指定此规则的名称。 |
eventName |
必选的 String 属性。 指定事件的名称。 |
custom |
可选的 String 属性。 |
provider |
可选的 String 属性。 指定提供程序的名称。 |
profile |
可选的 String 属性。 指定适用于此规则的配置文件。 |
minInstances |
可选的 Int32 属性。 指定事件通知触发前在给定应用程序内部的规则实例的最小数量。 默认值为 1。 |
maxLimit |
可选的 Int32 属性。 指定生成提供程序通知的规则实例的最大数量。 |
minInterval |
可选的 TimeSpan 属性。 指定两个事件之间的最小时间间隔。 |
子元素
无。
父元素
元素 |
说明 |
---|---|
configuration |
指定公共语言运行库和 .NET Framework 应用程序使用的每个配置文件中的根元素。 |
system.web |
为 ASP.NET 配置节指定根元素。 |
healthMonitoring |
针对运行状况监视配置应用程序。 |
rules |
将事件映射到提供程序。 |
备注
默认配置
下面的默认 add 元素在 .NET Framework 版本 2.0 的根 Web.config 文件中配置。
<rules>
<add name="All Errors Default"
eventName="All Errors"
provider="EventLogProvider"
profile="Default"
minInstances="1"
maxLimit="Infinite"
minInterval="00:01:00"
custom="" />
<add name="Failure Audits Default"
eventName="Failure Audits"
provider="EventLogProvider"
profile="Default"
minInstances="1"
maxLimit="Infinite"
minInterval="00:01:00"
custom="" />
</rules>
示例
下面的代码示例演示如何添加规则。
<rules>
<add name="Sample Web Requests"
eventName="SampleWebRequests"
provider="SampleEventProvider"
profile="Default"
minInterval="00:01:00" />
</rules>
元素信息
配置节处理程序 |
|
配置成员 |
|
可配置的位置 |
Machine.config 根级别的 Web.config 应用程序级别的 Web.config |
要求 |
Microsoft Internet 信息服务 (IIS) 版本 5.0、5.1 或 6.0 .NET Framework 2.0 版 Microsoft Visual Studio 2005 |
请参见
任务
概念
参考
healthMonitoring 元素(ASP.NET 设置架构)
healthMonitoring 的 rules 元素(ASP.NET 设置架构)
healthMonitoring 的 rules 的 remove 元素(ASP.NET 设置架构)
healthMonitoring 的 rules 的 clear 元素(ASP.NET 设置架构)