Check_MK - 配置遗留检查

时间:2016-01-29 15:22:37

标签: linux perl monitoring nagios check-mk

根据Ubuntu 14.04.3 LTS机器上的官方网站Check_MK 1.2.4p5社区版,我正在运行OMD 1.20 -latest。

我需要配置一个FTP检查,它还会检查凭据和读/写文件。标准插件不提供我所知道的功能,因此我尝试使用自定义插件,具体为:https://exchange.nagios.org/directory/Plugins/Network-Protocols/FTP/check_ftp_rw/details

因此监控服务器应该测试没有安装代理的外部FTP服务器。 我在/ usr / lib / nagios / plugins中有插件并且已经手动运行它可以正常工作。

现在我正在尝试将其配置为check_mk中的检查,因此我执行了以下操作 在/opt/omd/sites/monitoring/etc/check_mk/main.mk

# Put your host names here
# all_hosts = [ 'localhost' ]
all_hosts = [ ]

extra_nagios_conf += r"""

define command {

    command_name    check_ftprw
    command_line    /usr/lib/nagios/plugins/check_ftp_rw --host ftp.test.com --user test --password 'test123' --dir pub

}

"""
legacy_checks = [

  ( ( "check_ftprw", FTP", True), [ "localhost"] ),

]

我重新启动了omd网站并查看了广告资源,但是它已经完成了这项检查。

1 个答案:

答案 0 :(得分:0)

我已经解决了这个问题,配置没问题,然后我们需要重新加载check_mk:cmk -O

然后我们需要检查命令是否在check_mk_objects.cfg中注册:

# extra_nagios_conf



define command {

    command_name    check_ftprw
    command_line    /usr/lib/nagios/plugins/check_ftp_rw --host ftp.xxx --user test --password 'test' --dir pub --file test.txt --write

}

我们可以使用:check_mk_agent

检查代理输出