0

我在 Icinga2 中定义了一个 CheckCommand,如下所示:

object CheckCommand "foo" {
    import "plugin-check-command"
    command = [ "/opt/my_plugins/check_foo" ]

    arguments = {
        "-a" = {
            value = "$foo_a$"
            description = "Parameter A"
        }
        "-b" = {
            value = "$foo_b$"
            description = "Parameter B"
        }

    vars.foo_a = "$a$"
    vars.foo_b = "$b$"
}

该命令需要 a 或 b 或两者都需要,但如果它没有获得这些参数中的至少一个,它将无法运行。我想在 Icinga2 命令定义中表达这个要求,可以吗?

4

1 回答 1

0

注意:这适用于 NRPE 远程插件执行

对于自定义插件,我们也遇到了同样的问题。

通常 Icinga 会执行这样的命令

'/usr/local/nagios/libexec/check_nrpe' '-p' '56666' '-H' '10.104.16.214' \
'-a' '80' '90' '-c' 'nrpe_check_network_interface' 

这将导致问题,在解析此参数时,我们的插件将收到无效参数。可能在bashshell我们习惯于shift进入下一个可能导致问题的论点。

Icinga2 在 Checkcommand 中提供了更多选项,例如排序。

object CheckCommand "foo" {
    import "plugin-check-command"
    command = [ "/opt/my_plugins/check_foo" ]

    arguments = {
// If you need you can give this also
        "-H" = {
           value="$host$"
           order=0
        }
        "-a" = {
            value = "$foo_a$"
            description = "Parameter A"
            order = 1
        }
        "-b" = {
            value = "$foo_b$"
            description = "Parameter B"
            order = 2
        }

//No need to give vars here since it will come from service trigger part as macro.
}

不确定,试试这个!这可能会有所帮助。

于 2016-08-31T14:40:47.997 回答