How can I display custom host variables in the Nagios web interface such as _mac_address
?
Asked
Active
Viewed 5,048 times
5

Kyle Brandt
- 83,619
- 74
- 305
- 448
-
Did you find the solution? I have the same question, and I don't want to use the notes directive – Aug 26 '15 at 21:44
1 Answers
5
You can do this using the notes
directive inside of the host definition even if the variables are also defined their and they will show up in the host detail page (extinfo.cgi
). For example:
define host {
host_name web01
display_name web01
address 8.8.4.4
_mac_address 00:21:9B:00:21:9B
_sw_port_1 sw01_g3
notes $_HOSTMAC_ADDRESS$ $_HOSTSW_PORT_1$
hostgroups +webservers
use web_servers
}

Kyle Brandt
- 83,619
- 74
- 305
- 448