了解 ASP.NET 健康状况监控中的心跳

发布于 2024-12-08 22:22:59 字数 174 浏览 2 评论 0 原文

谁触发了事件?除了日志中每 30 秒出现一次之外,在 中启用它会带来什么后果/好处?和NLB心跳有关系吗?生产使用什么间隔比较好?

Who's triggering the event? What are consequences/benefits of enabling it in <healthMonitoring enabled="true" heartbeatInterval="30"> except it appears every 30 seconds in the logs? Has it anything to do with NLB heartbeat? What interval is better for production use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北城挽邺 2024-12-15 22:22:59

在 web.config 中以这种方式启用它将导致应用程序域定期(在您的情况下每 30 秒)引发一个 WebHeartbeatEvent ,基本上是为了检查您的应用程序是否“仍然存在”(例如检查人的心跳)。您可以指定其他规则,如下所示:

<healthMonitoring enabled="true" heartbeatInterval="100">
  <rules>
    <add name="Heart Beat Events"
      eventName="Heartbeats"
      provider="EventLogProvider"
      profile="Default"
      minInterval="00:01:00" />
  </rules>
</healthMonitoring>

指定“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:

<healthMonitoring enabled="true" heartbeatInterval="100">
  <rules>
    <add name="Heart Beat Events"
      eventName="Heartbeats"
      provider="EventLogProvider"
      profile="Default"
      minInterval="00:01:00" />
  </rules>
</healthMonitoring>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文