Bind Monitoring
This script is part of a monitoring solution that allows to monitor several services and applications.
For more information about this monitoring solution please check out this post on my site.
Bind has to have the statistics enable to make it work, please add the following options in named.conf:
#~ cat named.conf
...
statistics-channels {
inet 127.0.0.1 port 8653 allow { 127.0.0.1; };
};
...
#~
Also we need to enable the statistics in every zone that we want to get stats, please add these options on every zone definition:
#~ cat zones.conf
...
zone "example.net" in {
type master;
file "master/example.net";
zone-statistics yes;
};
...
#~
- ksh
- xmlstarlet
#~ sudo apt install ksh xmlstarlet
#~
#~ sudo yum install ksh
#~
Default variables:
NAME | VALUE |
---|---|
BIND_URL | http://localhost:8653/xml |
Note: these variables have to be saved in the config file (bindix.conf) in the same directory than the script.
#~ git clone https://github.com/sergiotocalini/bindix.git
#~ sudo ./bindix/deploy_zabbix.sh -u "${BIND_URL}"
#~ sudo systemctl restart zabbix-agent
Note: the installation has to be executed on the zabbix agent host and you have to import the template on the zabbix web.