答案 0 :(得分:2)
您需要在riemann.config文件中使用以下内容:
(let [nagios (nagios {:host "localhost" :port 5667 :password "secret" :encryption TRIPLE_DES})]
(streams
(where (service "some-critical-service")
nagios)))
它将转发来自服务"某些关键服务"到nagios。发送给nagios的消息将包含事件中的主机,状态,服务和描述。
您可以找到有关documentation for integrating with other systems和api docs specific to the nagios integration
的更多信息