Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

check_haproxy_backend

Rating
2 votes
Favoured:
0
Current Version
0.1
Last Release Date
2013-02-28
Compatible With
  • Nagios 3.x
  • Nagios XI
License
BSD
Hits
48327
Files:
FileDescription
check_haproxy_backendcheck_haproxy_backend
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
A quick hack to help us monitor the backends behind our haproxy setup
Usage:
check_haproxy_backend -H haproxyserver -x backend

No error checking done in the script.

Expects that the follwing has been added to haproxy.cfg, but username, password, port, and uri can be provided as parameters:
listen stats 0.0.0.0:8000
mode http
stats enable
stats uri /haproxy
stats realm HAProxy
stats auth hauser:hapasswd

Should be easily understandable and modifiable.
Reviews (1)
This works well espexially because it has perf data.
I only had to change a minor thing becaus eit matched the wrong line due to matching grep.

if you grep "something" it would match "not-something" as well.
so i changed:
my @line = grep(/$proxy,BACKEND,/, @csv);

to:
my @line = grep(/^$proxy,BACKEND,/, @csv);

regards,

Peter