如何使用 monit 检查 node.js 应用程序

如何使用 monit 检查 node.js 应用程序

我们在 node.js 中有一个应用程序,我们使用启动来启动和停止。但我们想实现 monit 来监控应用程序。所以我所做的是

已安装 Monit。已更改配置文件。

这是我的配置文件。

check host statupprogramwith address 68.178.232.100
     start "/sbin/start statupprogram"
     stop "/sbin/stop statupprogram"
     if failed port 8002 protocol HTTP
          request /
          with timeout 5 seconds
          then restart

我正在关注http://wellconsidered.be/nodejs-with-upstart-and-monit

为什么我停止时没有出现此消息

  stop startupprogram 

为什么没有收到此消息

Remote Host 'startupprogram'
  status                            Connection failed
  monitoring status                 monitored
  port response time                -1.000s to 109.74.206.126:8124/ [HTTP via TCP]
  data collected                    Fri Mar 25 19:01:55 2011

相关内容