pnp4nagios 未为新服务/主机创建图表

pnp4nagios 未为新服务/主机创建图表

我使用 pnp4nagios 建立了 nagios 基础设施。最近几天,我添加了新的主机 nosql 和安装在那里的 mongodb 警报。

主机配置:

define host{
        host_name               nosql
        use                     linux-server,host-pnp
        address                 xxx.xxx.xx.xxx
        }

服务配置:

define service{
        hostgroup_name                  nosql-servers
        use                             generic-service,pnp-service
        service_description             MongoDB Connect
        check_command                   check_nrpe!check_mongo_connect
        }

它们的配置方式似乎与其他的相同。但是,当我尝试访问 pnp4nagios 中的图表时,我得到了:

Please check the documentation for information about the following error.

XML file "/usr/local/pnp4nagios/var/perfdata/nosql/MongoDB_Connect.xml" not found. Read FAQ online

file [line]:
application/models/data.php [312]:

我有点帮忙。

我应该如何激活新图表?

答案1

问题可能出在您的监视器 check_mongo_connect 的输出中。除非将其设置为发送附加数据,否则 PNP 将无法接收它。如果您想知道需要做什么,我会查看您正在获取 PNP 数据的插件之一的输出(通过 shell 命令)。

请参阅此内容以了解更多信息:http://nagios.sourceforge.net/docs/3_0/perfdata.html

答案2

您需要编写一个模板来告诉 pnp4nagios 如何处理来自“MongoDB Connect”服务的输出(正常或 perfdata);它不会神奇地为新的/未知的检查类型创建图表。

请参阅文档中有关模板的部分

相关内容