I'm sure you guys have answered this a million times, and for the life of me I can't find any good info on it. Probably incorrect search terms.
Environment:
Nagios XI 2014R2.7 installed on vanilla CentOS 6, Windows hosts using NSClient++ 0.4.3.143-x64
Question:
I'm configuring the built-in check_http command to monitor our web application for availability and response time. The command apparently lets you do all this with one check command. Here's mine:
Code: Select all
./check_http -I [web server hostname] -u http://localhost/login.aspx -4 -s "[some string]" -w 1 -c .5Code: Select all
HTTP OK: HTTP/1.1 200 OK - 7478 bytes in 0.028 second response time |time=0.028248s;1.000000;0.500000;0.000000 size=7478B;;;0Code: Select all
HTTP CRITICAL: HTTP/1.1 200 OK - 7478 bytes in 0.033 second response time |time=0.032561s;1.000000;0.010000;0.000000 size=7478B;;;0So... how's the done?
Thanks!