Monitor Nginx with Zabbix

Configure a new nginx server listening on an alternate port (61709 in this example). This allows access to this information to be controlled.
server {
listen 61709;

location / {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}

}

Reload Nginx
/etc/init.d/nginx reload

Add the following to the end of /etc/zabbix/zabbix_agentd.conf
#Nginx Keys

# NginX Keys
UserParameter=nginx.active[*],wget -O- -q $1:$2 | awk ‘/^Active/ {print $NF}’
UserParameter=nginx.reading[*],wget -O- -q $1:$2 | awk ‘/Reading/ {print $$2}’
UserParameter=nginx.writing[*],wget -O- -q $1:$2 | awk ‘/Writing/ {print $$4}’
UserParameter=nginx.waiting[*],wget -O- -q $1:$2 | awk ‘/Waiting/ {print $$6}’
UserParameter=nginx.accepted[*],wget -O- -q $1:$2 | awk ‘/^[ \t]+[0-9]+[ \t]+[0-9]+[ \t]+[0-9]+/ {print $$1}’
UserParameter=nginx.handled[*],wget -O- -q $1:$2 | awk ‘/^[ \t]+[0-9]+[ \t]+[0-9]+[ \t]+[0-9]+/ {print $$2}’
UserParameter=nginx.requests[*],wget -O- -q $1:$2 | awk ‘/^[ \t]+[0-9]+[ \t]+[0-9]+[ \t]+[0-9]+/ {print $$3}’

Restart the Zabbix agent
/etc/init.d/zabbix-agent restart

To use these UserParameters, set the host (localhost) and port (61709) in the key
nginx.active[localhost,61709]

Monitor Memcached with Zabbix

Insert the following to the end of /etc/zabbix/zabbix_agentd.conf.d/memcached.conf

UserParameter=memcached.stats[*],(echo stats; sleep 0.1) | telnet localhost 11211 2>&1 | awk ‘/STAT $1/ {print $NF}’

ZTC (Zabbix Templates Collection) – the simple way to use the templates of zabbix – Linux, PostgreSQL, Slony, Nginx, Apache2, Mongo etc.

These the instruction are correct for the version of package 12.0.

Now, we describe step by step all the process in the very simple form:

1. Download the archive tar.gz ztc-12.01.1.tar.gz and save to any the temporary directory, for example – /tmp. (CLIENT SIDE!!)

“ZTC (Zabbix Templates Collection) – the simple way to use the templates of zabbix – Linux, PostgreSQL, Slony, Nginx, Apache2, Mongo etc.”Continue reading

Monitor MySQL with zabbix-agentd with the help UserParameters.

For the use Zabbix’s template with the name Template App MySQL neccessary create the file:

 
localhost:/etc/zabbix/zabbix-agentd.conf.d # ll
-rw-r--r-- 1 root root   418 Oct 31 15:07 userparameter_mysql.conf
localhost:/etc/zabbix/zabbix-agentd.conf.d #

“Monitor MySQL with zabbix-agentd with the help UserParameters.”Continue reading

Scroll to top