Как проверить среднюю загрузку удаленного сервера с помощью Icinga2 - PullRequest
0 голосов
/ 17 октября 2018

В Icinga2 в папке nagios plugins есть скрипт с именем check_load, который выдает результат для хост-ОС.Когда я вызываю скрипт с -h, он сообщает:

check_load v2.1.1 (monitoring-plugins 2.1.1)
Copyright (c) 1999 Felipe Gustavo de Almeida <galmeida@linux.ime.usp.br>
Copyright (c) 1999-2007 Monitoring Plugins Development Team
    <devel@monitoring-plugins.org>

This plugin tests the current system load average.

Usage:
check_load [-r] -w WLOAD1,WLOAD5,WLOAD15 -c CLOAD1,CLOAD5,CLOAD15

Options:
 -h, --help
    Print detailed help screen
 -V, --version
    Print version information
 --extra-opts=[section][@file]
    Read options from an ini file. See
    https://www.monitoring-plugins.org/doc/extra-opts.html
    for usage and examples.
 -w, --warning=WLOAD1,WLOAD5,WLOAD15
    Exit with WARNING status if load average exceeds WLOADn
 -c, --critical=CLOAD1,CLOAD5,CLOAD15
    Exit with CRITICAL status if load average exceed CLOADn
    the load average format is the same used by "uptime" and "w"
 -r, --percpu
    Divide the load averages by the number of CPUs (when possible)

Send email to help@monitoring-plugins.org if you have questions regarding
use of this software. To submit patches or suggest improvements, send email
to devel@monitoring-plugins.org

Как оказалось, нет параметра для передачи в качестве адреса хоста.

Вопрос какя должен получить среднюю нагрузку (1м, 5м, 15м) удаленных серверов?

1 Ответ

0 голосов
/ 12 ноября 2018

вы можете использовать сервер / клиент nagios nrpe для запроса удаленного хоста

на стороне сервера (удаленный хост): в /etc/nagios/nrpe.d/default.cfg

добавить строкувот так

command[system_load]=/usr/lib/nagios/plugins/check_load -r -w 100,20,30 -c 100,40,50

запрос от icinga

/usr/lib/nagios/plugins/check_nrpe -H HOSTNAME -c system_load -t 30
...