繁体   English   中英

如何使用Icinga2检查远程服务器平均负载

[英]How to check remote server load average using Icinga2

Icinga2nagios plugins文件夹中存在一个名为check_load的脚本,该脚本为主机OS提供结果。 当我用-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

看起来没有参数可作为主机地址传递。

问题是如何获取远程服务器的平均负载(1m,5m,15m)?

您可以使用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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM