Can you do vmware host monitoring with the log server.
As in the hyper-visor not the guests.
Vmware Monitoring?
Re: Vmware Monitoring?
Yes, and fortunately it's not too difficult to set up.
First, we need to setup a new input in Nagios Log Server. Navigate to Administration -> Global Configuration. Once there, click 'Add Input' and name it something appropriate (I named mine "ESXI log input).
After you have named the input, type the following into the body:
After you have pasted this configuration into the body, press 'Save & Apply'. You have just configured Logstash to listen on port 1514 (required by ESXI).
Now, we need to open that port on the firewall of Nagios Log Server. To do so, enter the following commands on the CLI:
After that is complete, follow this VMWare configuration guide to setup your ESXI hosts to log to udp://nagios.log.server.ip:1514
http://kb.vmware.com/selfservice/micros ... Id=1007329
First, we need to setup a new input in Nagios Log Server. Navigate to Administration -> Global Configuration. Once there, click 'Add Input' and name it something appropriate (I named mine "ESXI log input).
After you have named the input, type the following into the body:
Code: Select all
udp {
type => 'esxilogs'
port => 1514
}Now, we need to open that port on the firewall of Nagios Log Server. To do so, enter the following commands on the CLI:
Code: Select all
iptables -A INPUT -p udp -m udp --dport 1514 -j ACCEPT
iptables-save | sudo tee /etc/sysconfig/iptables
service iptables restarthttp://kb.vmware.com/selfservice/micros ... Id=1007329