了解 ASP.NET 健康状况监控中的心跳
谁触发了事件?除了日志中每 30 秒出现一次之外,在
中启用它会带来什么后果/好处?和NLB心跳有关系吗?生产使用什么间隔比较好?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
谁触发了事件?除了日志中每 30 秒出现一次之外,在
中启用它会带来什么后果/好处?和NLB心跳有关系吗?生产使用什么间隔比较好?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
在 web.config 中以这种方式启用它将导致应用程序域定期(在您的情况下每 30 秒)引发一个
WebHeartbeatEvent
,基本上是为了检查您的应用程序是否“仍然存在”(例如检查人的心跳)。您可以指定其他规则,如下所示:指定“
EventLogProvider
”将导致事件记录到 EventLog,但您也可以编写自己的提供程序,请参阅此处。顺便说一句,它与 NLB 检测信号无关,仅用于负载平衡目的。
Enabling it in this way in the web.config will cause the Application Domain to raise a
WebHeartbeatEvent
periodically (in your case every 30 seconds), basically to check if your application is 'still alive' (like checking a human's heartbeat). You can specify additional rules like this:Specifying '
EventLogProvider
' will cause the events to be logged to the EventLog, but you could also write your own Provider, see here.It has nothing to do with the NLB heartbeat by the way, which is only used for Load Balancing purposes.