5.使用centreon命令之Commands
详细使用,请参考:
http://documentation.centreon.com/docs/centreon-clapi/en/latest/user/objects/commands.html#
使用centreon的commands参数,可以增、删、改nagios的检查命令。
①. 列出可用的Nagios命令,使用SHOW动作:
1)、命令:
centreon -u用户名 -p密码 -o HOST -o CMD -a show |
[[email protected] ~]# centreon -uadmin -p123456 -o CMD -a show id;name;type;line 1;check_host_alive;check;$USER1$/check_ping -H $HOSTADDRESS$ -w 3000.0,80% -c 5000.0,100% -p 1 2;check_disk_smb;check;$USER1$/check_disk_smb -H $HOSTADDRESS$ -s $ARG1$ -u $ARG2$ -p $ARG3$ -w $ARG4$ -c $ARG5$ 3;check_distant_disk_space;check;$USER1$/check_distant_disk_space -H $HOSTADDRESS$ -C $ARG1$ -p $ARG2$ -w $ARG3$ -c $ARG4$ 4;check_centreon_dummy;check;$USER1$/check_centreon_dummy -s $ARG1$ -o $ARG2$ …… |
列参数说明:
Column |
Description |
Command ID |
|
Command name |
自定义 |
Command type |
Values:check, notif or misc |
Command line |
System command line that will be run on execution |
②. 增加的Nagios命令,使用ADD动作:
格式:
centreon -u用户名 -p密码 -o CMD -a ADD -v ‘命令名;类型;命令‘ |
注:直接定义命令时,需要使用单引号【’】,应为命令中含有变量【$...】。
1)、执行命令:
[[email protected] ~]# centreon -uadmin -p123456 -o CMD -a ADD -v ‘centreon-check-mysql;check;$USER1$/check_mysql -H $HOSTADDRESS$ -P $ARG1$ -u $ARG2$ -p $ARG3$‘ [[email protected] ~]# |
2)、web显示结果:
3)、nagios配置文件结果:
[[email protected] ~]# cd /usr/local/nagios/etc/ [[email protected] etc]# grep centreon-check-mysql -R ./* |
4)、激活配置,重启服务:
5)、nagios配置文件结果:
[[email protected] etc]# grep centreon-check-mysql -R ./* [[email protected] etc]# [[email protected] etc]# grep centreon-check-mysql -R ./* ./checkcommands.cfg: command_name centreon-check-mysql [[email protected] etc]# |
6)、列参数说明:
Column |
Description |
Command ID |
|
Command name |
自定义 |
Command type |
Values:check, notif or misc |
Command line |
System command line that will be run on execution |
注:你需要重新生成配置文件,然后重新启动,以应用更改监控引擎。
命令的类型,很重要;一般能直接执行,且能获取到被监控机的信息的命令,使用check类型,而通知的命令,则使用notify。
③. 删除的Nagios命令,使用DEL动作:
格式:
centreon -u用户名 -p密码 -o CMD -a DEL -v ‘命令名‘ |
注:直接定义命令时,需要使用单引号【’】,应为命令中含有变量【$...】。
1)、执行命令:
[[email protected] ~]# centreon -uadmin -p123456 -o CMD -a DEL -v ‘centreon-check-mysql‘ [[email protected] ~]# |
注:你需要重新生成配置文件,然后重新启动,以应用更改监控引擎。
④. 修改的Nagios命令,使用SETPARAM动作:
格式:
centreon -u用户名 -p密码 -o CMD -a SETPARAM -v ‘命令名;参数;值‘ |
注:直接定义命令时,需要使用单引号【’】,应为命令中含有变量【$...】。
1)、执行命令:
[[email protected] etc]# centreon -uadmin -p123456 -o CMD -a show|grep centreon-check-mysql 119;centreon-check-mysql;check;$USER1$/check_mysql -H $HOSTADDRESS$ -P $ARG1$ -u $ARG2$ -p $ARG3$ [[email protected] etc]# centreon -uadmin -p123456 -o CMD -a SETPARAM -v ‘centreon-check-mysql;type;notif‘ [[email protected] etc]# centreon -uadmin -p123456 -o CMD -a show|grep centreon-check-mysql 119;centreon-check-mysql;notif;$USER1$/check_mysql -H $HOSTADDRESS$ -P $ARG1$ -u $ARG2$ -p $ARG3$ [[email protected] etc]# centreon -uadmin -p123456 -o CMD -a SETPARAM -v ‘centreon-check-mysql;name;fufangchun-check-mysql‘ [[email protected] etc]# centreon -uadmin -p123456 -o CMD -a show|grep fufangchun-check-mysql 119;fufangchun-check-mysql;notif;$USER1$/check_mysql -H $HOSTADDRESS$ -P $ARG1$ -u $ARG2$ -p $ARG3$ [[email protected] etc]# |
2)、列参数说明:
Parameter |
Description |
name |
Name of command |
line |
Command line |
type |
check, notif, misc |
graph |
Graph template applied on command |
example |
Example of arguments (i.e: !80!90) |
comment |
Comments regarding the command |
注:你需要重新生成配置文件,然后重新启动,以应用更改监控引擎。
至此,我们可以使用centreon命令,自动的添加nagios检查命令了,非常的方便。