* Add doc for Freeswitch Application * Add Freeswitch Application to doc table of content
31 KiB
source: Extensions/Applications.md
Introduction
You can use Application support to graph performance statistics from many applications.
Different applications support a variety of ways to collect data: by direct connection to the application, snmpd extend, or the agent.
- Apache - SNMP extend, Agent
- BIND9/named - SNMP extend, Agent
- C.H.I.P. - SNMP extend
- DHCP Stats - SNMP extend
- EXIM Stats - SNMP extend
- Fail2ban - SNMP extend
- FreeBSD NFS Client - SNMP extend
- FreeBSD NFS Server - SNMP extend
- Freeswitch - SNMP extend, Agent
- GPSD - Agent
- Mailscanner - SNMP extend
- Memcached - SNMP extend
- Munin - Agent
- MySQL - SNMP extend, Agent
- NGINX - Agent
- NFS-server - SNMP extend
- NTP Client - SNMP extend
- NTP Server - SNMP extend
- Nvidia GPU - SNMP extend
- Open Grid Scheduler - SNMP extend
- OS Updates - SNMP extend
- PHP-FPM - SNMP extend
- Pi-hole - SNMP extend
- Postfix - SNMP extend
- Postgres - SNMP extend
- PowerDNS - Agent
- PowerDNS Recursor - Direct, Agent
- Proxmox - SNMP extend
- Raspberry PI - SNMP extend
- SDFS info - SNMP extend
- SMART - SNMP extend
- Squid - SNMP proxy
- TinyDNS/djbdns - Agent
- Unbound - Agent
- UPS-nut - SNMP extend
- UPS-apcups - SNMP extend
Apache
Either use SNMP extend or use the agent.
Note that you need to install and configure the Apache mod_status module before trying the script.
SNMP Extend
- Download the script onto the desired host (the host must be added to LibreNMS devices)
wget https://raw.githubusercontent.com/librenms/librenms-agent/master/snmp/apache-stats.py -O /etc/snmp/apache-stats.py
-
Make the script executable (chmod +x /etc/snmp/apache-stats.py)
-
Verify it is working by running /etc/snmp/apache-stats.py (In some cases urlgrabber needs to be installed, in Debian it can be achieved by: apt-get install python-urlgrabber)
-
Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
extend apache /etc/snmp/apache-stats.py
- Restart snmpd on your host
Agent
Install the agent on this device if it isn't already and copy the apache
script to /usr/lib/check_mk_agent/local/
- Verify it is working by running /usr/lib/check_mk_agent/local/apache (If you get error like "Can't locate LWP/Simple.pm". libwww-perl needs to be installed: apt-get install libwww-perl)
- On the device page in Librenms, edit your host and check the
Apache
under the Applications tab.
BIND9 aka named
1: Create stats file with appropriate permissions:
~$ touch /var/run/named/stats
~$ chown bind:bind /var/run/named/stats
Change user:group
to the user and group that's running bind/named.
2: Bind/named configuration:
options {
...
statistics-file "/var/run/named/stats";
zone-statistics yes;
...
};
3: Restart your bind9/named after changing the configuration.
4: Verify that everything works by executing rndc stats && cat /var/run/named/stats
. In case you get a Permission Denied
error, make sure you chown'ed correctly.
5: Also be aware that this file is appended to each time rndc stats
is called. Given this it is suggested you setup file rotation for it. Alternatively you can also set zero_stats to 1 in the config.
6: The script for this also requires the Perl module File::ReadBackwards. On FreeBSD this is available as p5-File-ReadBackwards and on linux as perl-File-ReadBackwards in CentOS/Redhat and libfile-readbackwards-perl Debian/Ubuntu. If it is not available, it can be installed by cpan -i File::ReadBackwards
.
7: You may possible need to configure the agent/extend script as well.
The config file's path defaults to the same path as the script, but with .config appended. So if the script is located at /etc/snmp/bind
, the config file will be /etc/snmp/bind.config
. Alternatively you can also specific a config via -c $file
.
Anything starting with a # is comment. The format for variables is $variable=$value. Empty lines are ignored. Spaces and tabes at either the start or end of a line are ignored.
The variables are as below.
rndc = The path to rndc. Default: /usr/bin/env rndc
call_rndc = A 0/1 boolean on weather to call rndc stats. Suggest to set to 0 if using netdata. Default: 1
stats_file = The path to the named stats file. Default: /var/run/named/stats
agent = A 0/1 boolean for if this is being used as a LibreNMS agent or not. Default: 0
zero_stats = A 0/1 boolean for if the stats file should be zeroed first. Default: 0 (1 if guessed)
If you want to guess at the configuration, call it with -g and it will print out what it thinks it should be.
8: On the device page in Librenms, edit your host and check BIND
under the Applications tab.
SNMP Extend
1: Copy the bind shell script, to the desired host (the host must be added to LibreNMS devices)
wget https://github.com/librenms/librenms-agent/raw/master/snmp/bind -O /etc/snmp/bind
2: Make the script executable (chmod +x /etc/snmp/bind)
3: Edit your snmpd.conf file and add:
extend bind /etc/snmp/bind
4: Restart snmpd on the host in question.
Agent
1: Install the agent on this device if it isn't already and copy the script to /usr/lib/check_mk_agent/local/bind
via wget https://raw.githubusercontent.com/librenms/librenms-agent/master/snmp/bind -O /usr/lib/check_mk_agent/local/bind
2: Run chmod +x /usr/lib/check_mk_agent/local/bind
3: Set the variable 'agent' to '1' in the config.
C.H.I.P
C.H.I.P. is a $9 R8 based tiny computer ideal for small projects.
Further details: https://getchip.com/pages/chip
SNMP Extend
- Copy the shell script to the desired host (the host must be added to LibreNMS devices)
wget https://raw.githubusercontent.com/librenms/librenms-agent/master/snmp/chip.sh -O /etc/snmp/power-stat.sh
-
Make the script executable (chmod +x /etc/snmp/power-stat.sh)
-
Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
extend power-stat /etc/snmp/power-stat.sh
- Restart snmpd on your host
DHCP Stats
A small shell script that reports current DHCP leases stats.
SNMP Extend
-
Copy the shell script to the desired host (the host must be added to LibreNMS devices)
-
Make the script executable (chmod +x /etc/snmp/dhcp-status.sh)
-
Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
extend dhcpstats /etc/snmp/dhcp-status.sh
- Restart snmpd on your host
EXIM Stats
SNMP extend script to get your exim stats data into your host.
SNMP Extend
-
Copy the exim stats to
/etc/snmp/
(or any other suitable location) on your host. -
Make the script executable:
chmod +x /etc/snmp/exim-stats.sh
-
Edit your snmpd.conf file (usually
/etc/snmp/snmpd.conf
) and add:
extend exim-stats /etc/snmp/exim-stats.sh
- If you are using sudo edit your sudo users (usually
visudo
) and add at the bottom:
snmp ALL=(ALL) NOPASSWD: /etc/snmp/exim-stats.sh, /usr/bin/exim*
- Restart snmpd on your host
Fail2ban
SNMP Extend
1: Copy the shell script, fail2ban, to the desired host (the host must be added to LibreNMS devices) (wget https://github.com/librenms/librenms-agent/raw/master/snmp/fail2ban -O /etc/snmp/fail2ban)
2: Make the script executable (chmod +x /etc/snmp/fail2ban)
3: Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
extend fail2ban /etc/snmp/fail2ban
4: Edit /etc/snmp/fail2ban to match the firewall table you are using on your system. You should be good if you are using the defaults. Also make sure that the cache variable is properly set if you wish to use caching. The directory it exists in, needs to exist as well. To make sure it is working with out issue, run '/etc/snmp/fail2ban -u' and make sure it runs with out producing any errors.
5: Restart snmpd on your host
6: If you wish to use caching, add the following to /etc/crontab and restart cron.
*/3 * * * * root /etc/snmp/fail2ban -u
7: Restart or reload cron on your system.
In regards to the totals graphed there are two variables banned and firewalled. Firewalled is a count of banned entries the firewall for fail2ban and banned is the currently banned total from fail2ban-client. Both are graphed as the total will diverge with some configurations when fail2ban fails to see if a IP is in more than one jail when unbanning it. This is most likely to happen when the recidive is in use.
If you have more than a few jails configured, you may need to use caching as each jail needs to be polled and fail2ban-client can't do so in a timely manner for than a few. This can result in failure of other SNMP information being polled.
FreeBSD NFS Client
SNMP Extend
1: Copy the shell script, fbsdnfsserver, to the desired host (the host must be added to LibreNMS devices) (wget https://github.com/librenms/librenms-agent/raw/master/snmp/fbsdnfsclient -O /etc/snmp/fbsdnfsclient)
2: Make the script executable (chmod +x /etc/snmp/fbsdnfsclient)
3: Edit your snmpd.conf file and add:
extend fbsdnfsclient /etc/snmp/fbsdnfsclient
4: Restart snmpd on your host
FreeBSD NFS Server
SNMP Extend
1: Copy the shell script, fbsdnfsserver, to the desired host (the host must be added to LibreNMS devices) (wget https://github.com/librenms/librenms-agent/raw/master/snmp/fbsdnfsserver -O /etc/snmp/fbsdnfsserver)
2: Make the script executable (chmod +x /etc/snmp/fbsdnfsserver)
3: Edit your snmpd.conf file and add:
extend fbsdnfsserver /etc/snmp/fbsdnfsserver
4: Restart snmpd on your host
Mailscanner
SNMP Extend
- Download the script onto the desired host (the host must be added to LibreNMS devices)
wget https://raw.githubusercontent.com/librenms/librenms-agent/master/snmp/mailscanner.php -O /etc/snmp/mailscanner.php
-
Make the script executable (chmod +x /etc/snmp/mailscanner.php)
-
Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
extend mailscanner /etc/snmp/mailscanner.php
- Restart snmpd on your host
GPSD
A small shell script that reports GPSD status.
Agent
Install the agent on this device if it isn't already and copy the gpsd
script to /usr/lib/check_mk_agent/local/
You may need to configure $server
or $port
.
Verify it is working by running /usr/lib/check_mk_agent/local/gpsd
Freeswitch
A small shell script that reports various Freeswitch call status.
Agent
-
Install the agent on your Freeswitch server if it isn't already
-
Copy the freeswitch script to
/usr/lib/check_mk_agent/local/
-
Configure
FSCLI
in the script. You may also have to create an/etc/fs_cli.conf
file if yourfs_cli
command requires authentication. -
Verify it is working by running
/usr/lib/check_mk_agent/local/freeswitch
SNMP Extend
-
Copy the freeswitch script to
/etc/snmp/
on your Freeswitch server. -
Make the script executable:
chmod +x /etc/snmp/freeswitch
-
Configure
FSCLI
in the script. You may also have to create an/etc/fs_cli.conf
file if yourfs_cli
command requires authentication. -
Verify it is working by running
/etc/snmp/freeswitch
-
Edit your snmpd.conf file (usually
/etc/snmp/snmpd.conf
) and add:
extend freeswitch /etc/snmp/freeswitch
- Restart snmpd on your host
Memcached
SNMP Extend
-
Copy the memcached script to
/etc/snmp/
on your remote server. -
Make the script executable:
chmod +x /etc/snmp/memcached
-
Edit your snmpd.conf file (usually
/etc/snmp/snmpd.conf
) and add:
extend memcached /etc/snmp/memcached
- Restart snmpd on your host
Munin
Agent
- Install the script to your agent:
wget https://raw.githubusercontent.com/librenms/librenms-agent/master/agent-local/munin -O /usr/lib/check_mk_agent/local/munin
- Make the script executable (
chmod +x /usr/lib/check_mk_agent/local/munin
) - Create the munin scripts dir:
mkdir -p /usr/share/munin/munin-scripts
- Install your munin scripts into the above directory.
To create your own custom munin scripts, please see this example:
#!/bin/bash
if [ "$1" = "config" ]; then
echo 'graph_title Some title'
echo 'graph_args --base 1000 -l 0' #not required
echo 'graph_vlabel Some label'
echo 'graph_scale no' #not required, can be yes/no
echo 'graph_category system' #Choose something meaningful, can be anything
echo 'graph_info This graph shows something awesome.' #Short desc
echo 'foobar.label Label for your unit' # Repeat these two lines as much as you like
echo 'foobar.info Desc for your unit.'
exit 0
fi
echo -n "foobar.value " $(date +%s) #Populate a value, here unix-timestamp
MySQL
Agent
Install the agent on this device if it isn't already and copy the mysql
script to /usr/lib/check_mk_agent/local/
The MySQL script requires PHP-CLI and the PHP MySQL extension, so please verify those are installed.
CentOS (May vary based on PHP version)
yum install php-cli php-mysql
Debian (May vary based on PHP version)
apt-get install php5-cli php5-mysql
Unlike most other scripts, the MySQL script requires a configuration file mysql.cnf
in the same directory as the extend or agent script with following content:
<?php
$mysql_user = 'root';
$mysql_pass = 'toor';
$mysql_host = 'localhost';
$mysql_port = 3306;
SNMP extend
1: Copy the mysql script to the desired host (the host must be added to LibreNMS devices) (wget https://github.com/librenms/librenms-agent/raw/master/snmp/mysql -O /etc/snmp/mysql )
2: Make the scripts executable (chmod +x /etc/snmp/mysql)
3: Make sure you set hostname, user, and pass are properly set in /etc/snmp/mysql.cnf
4: Edit your snmpd.conf file and add:
extend mysql /etc/snmp/mysql
4: Restart snmpd.
5: Install the PHP CLI language and your MySQL module of choice for PHP.
Agent
Install the agent on this device if it isn't already and copy the mysql
script to /usr/lib/check_mk_agent/local/
Make sure you set hostname, user, and pass are properly set in `/usr/lib/check_mk_agent/local/mysql.cnf
Verify it is working by running /usr/lib/check_mk_agent/local/mysql
NGINX
NGINX is a free, open-source, high-performance HTTP server: https://www.nginx.org/
It's required to have the following directive in your nginx configuration responsible for the localhost server:
location /nginx-status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
SNMP Extend
- Download the script onto the desired host (the host must be added to LibreNMS devices)
wget https://raw.githubusercontent.com/librenms/librenms-agent/master/snmp/nginx-stats -O /etc/snmp/nginx-stats
-
Make the script executable (chmod +x /etc/snmp/nginx-stats)
-
Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
extend nginx /etc/snmp/nginx-stats
- Restart snmpd on your host
Agent
Install the agent on this device if it isn't already and copy the nginx
script to /usr/lib/check_mk_agent/local/
NFS-server
Export the NFS stats from as server.
SNMP Extend
- Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add :
extend nfs-server /bin/cat /proc/net/rpc/nfsd
note : find out where cat is located using : which cat
- reload snmpd service to activate the configuration
NTP Client
A shell script that gets stats from ntp client.
SNMP Extend
- Download the script onto the desired host (the host must be added to LibreNMS devices)
wget https://raw.githubusercontent.com/librenms/librenms-agent/master/snmp/ntp-client.sh -O /etc/snmp/ntp-client.sh
-
Make the script executable (chmod +x /etc/snmp/ntp-client.sh)
-
Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
extend ntp-client /etc/snmp/ntp-client.sh
- Restart snmpd on your host
NTP Server (NTPD)
A shell script that gets stats from ntp server (ntpd).
SNMP Extend
- Download the script onto the desired host (the host must be added to LibreNMS devices)
wget https://raw.githubusercontent.com/librenms/librenms-agent/master/snmp/ntp-server.sh -O /etc/snmp/ntp-server.sh
-
Make the script executable (chmod +x /etc/snmp/ntp-server.sh)
-
Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
extend ntp-server /etc/snmp/ntp-server.sh
- Restart snmpd on your host
Nvidia GPU
SNMP Extend
1: Copy the shell script, nvidia, to the desired host (the host must be added to LibreNMS devices) (wget https://github.com/librenms/librenms-agent/raw/master/snmp/nvidia -O /etc/snmp/nvidia)
2: Make the script executable (chmod +x /etc/snmp/nvidia)
3: Edit your snmpd.conf file and add:
extend nvidia /etc/snmp/nvidia
5: Restart snmpd on your host.
6: Verify you have nvidia-smi installed, which it generally should be if you have the driver from Nvida installed.
The GPU numbering on the graphs will correspond to how the nvidia-smi sees them as being.
For questions about what the various values are/mean, please see the nvidia-smi man file under the section covering dmon.
Open Grid Scheduler
Shell script to track the OGS/GE jobs running on clusters.
SNMP Extend
- Download the script onto the desired host (the host must be added to LibreNMS devices)
wget https://raw.githubusercontent.com/librenms/librenms-agent/master/agent-local/rocks.sh -O /etc/snmp/rocks.sh
-
Make the script executable (chmod +x /etc/snmp/rocks.sh)
-
Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
extend ogs /etc/snmp/rocks.sh
OS Updates
A small shell script that checks your system package manager for any available updates. Supports apt-get/pacman/yum/zypper package managers).
For pacman users automatically refreshing the database, it is recommended you use an alternative database location --dbpath=/var/lib/pacman/checkupdate
SNMP Extend
- Download the script onto the desired host (the host must be added to LibreNMS devices)
wget https://raw.githubusercontent.com/librenms/librenms-agent/master/snmp/os-updates.sh -O /etc/snmp/os-updates.sh
-
Make the script executable (chmod +x /etc/snmp/os-updates.sh)
-
Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
extend osupdate /etc/snmp/os-updates.sh
- Restart snmpd on your host
Note: apt-get depends on an updated package index. There are several ways to have your system run apt-get update
automatically. The easiest is to create /etc/apt/apt.conf.d/10periodic
and pasting the following in it: APT::Periodic::Update-Package-Lists "1";
.
If you have apticron, cron-apt or apt-listchanges installed and configured, chances are that packages are already updated periodically.
PHP-FPM
SNMP Extend
-
Copy the shell script, phpfpm-sp, to the desired host (the host must be added to LibreNMS devices) (wget https://github.com/librenms/librenms-agent/raw/master/snmp/phpfpm-sp -O /etc/snmp/phpfpm-sp)
-
Make the script executable (chmod +x /etc/snmp/phpfpm-sp)
-
Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
extend phpfpmsp /etc/snmp/phpfpm-sp
5: Edit /etc/snmp/phpfpm-sp to include the status URL for the PHP-FPM pool you are monitoring. 6. Restart snmpd on your host
It is worth noting that this only monitors a single pool. If you want to monitor multiple pools, this won't do it.
Pi-hole
SNMP Extend
1: Copy the shell script, pi-hole, to the desired host (the host must be added to LibreNMS devices) (wget https://github.com/librenms/librenms-agent/raw/master/snmp/pi-hole -O /etc/snmp/pi-hole)
2: Make the script executable (chmod +x /etc/snmp/pi-hole)
3: Edit your snmpd.conf file and add:
extend pi-hole /etc/snmp/pi-hole
4: To get all data you must get your API auth token from Pi-hole server and change the API_AUTH_KEY entry inside the snmp script.
5: Restard snmpd.
6: On the device page in Librenms, edit your host and check the Pi-hole
under the Applications tab or wait for it to be auto-discovered.
Postfix
SNMP Extend
1: Copy the shell script, postfix-queues, to the desired host (the host must be added to LibreNMS devices) (wget https://github.com/librenms/librenms-agent/raw/master/snmp/postfix-queues -O /etc/snmp/postfix-queues)
2: Copy the Perl script, postfixdetailed, to the desired host (the host must be added to LibreNMS devices) (wget https://github.com/librenms/librenms-agent/raw/master/snmp/postfixdetailed -O /etc/snmp/postfixdetailed)
3: Make the scripts executable (chmod +x /etc/snmp/postfixdetailed /etc/snmp/postfix-queues)
4: Edit your snmpd.conf file and add:
extend mailq /etc/snmp/postfix-queues
extend postfixdetailed /etc/snmp/postfixdetailed
5: Restart snmpd.
6: Install pflogsumm for your OS.
7: Make sure the cache file in /etc/snmp/postfixdetailed is some place that snmpd can write too. This file is used for tracking changes between various values between each time it is called by snmpd. Also make sure the path for pflogsumm is correct.
8: Run /etc/snmp/postfixdetailed to create the initial cache file so you don't end up with some crazy initial starting value. Please note that each time /etc/snmp/postfixdetailed is ran, the cache file is updated, so if this happens in between LibreNMS doing it then the values will be thrown off for that polling period.
Postgres
SNMP Extend
1: Copy the shell script, postgres, to the desired host (the host must be added to LibreNMS devices) (wget https://github.com/librenms/librenms-agent/raw/master/snmp/postgres -O /etc/snmp/postgres)
2: Make the script executable (chmod +x /etc/snmp/postgres)
3: Edit your snmpd.conf file and add:
extend postgres /etc/snmp/postgres
4: Restart snmpd on your host
5: Install the Nagios check check_postgres.pl on your system.
6: Verify the path to check_postgres.pl in /etc/snmp/postgres is correct.
7: If you wish it to ignore the database postgres for totalling up the stats, set ignorePG to 1(the default) in /etc/snmp/postgres. If you are using netdata or the like, you may wish to set this or otherwise that total will be very skewed on systems with light or moderate usage.
PowerDNS
An authoritative DNS server: https://www.powerdns.com/auth.html
SNMP Extend
Agent
Install the agent on this device if it isn't already and copy the powerdns
script to /usr/lib/check_mk_agent/local/
PowerDNS Recursor
A recursive DNS server: https://www.powerdns.com/recursor.html
Direct
The LibreNMS polling host must be able to connect to port 8082 on the monitored device. The web-server must be enabled, see the Recursor docs: https://doc.powerdns.com/md/recursor/settings/#webserver
Variables
$config['apps']['powerdns-recursor']['api-key']
required, this is defined in the Recursor config
$config['apps']['powerdns-recursor']['port']
numeric, defines the port to connect to PowerDNS Recursor on. The default is 8082
$config['apps']['powerdns-recursor']['https']
true or false, defaults to use http.
SNMP Extend
1: Copy the shell script, powerdns-recursor, to the desired host (the host must be added to LibreNMS devices) (wget https://github.com/librenms/librenms-agent/raw/master/snmp/powerdns-recursor -O /etc/snmp/powerdns-recursor)
2: Make the script executable (chmod +x /etc/snmp/powerdns-recursor)
3: Edit your snmpd.conf file and add:
extend powerdns-recursor /etc/snmp/powerdns-recursor
4: Restart snmpd on your host
Agent
Install the agent on this device if it isn't already and copy the powerdns-recursor
script to /usr/lib/check_mk_agent/local/
This script uses rec_control get-all
to collect stats.
Proxmox
-
For Proxmox 4.4+ install the libpve-apiclient-perl package
apt install libpve-apiclient-perl
-
Download the script onto the desired host (the host must be added to LibreNMS devices)
wget https://raw.githubusercontent.com/librenms/librenms-agent/master/agent-local/proxmox -O /usr/local/bin/proxmox
-
Make the script executable:
chmod +x /usr/local/bin/proxmox
-
Edit your snmpd.conf file (usually
/etc/snmp/snmpd.conf
) and add:extend proxmox /usr/local/bin/proxmox
(Note: if your snmpd doesn't run as root, you might have to invoke the script using sudo.extend proxmox /usr/bin/sudo /usr/local/bin/proxmox
) -
Restart snmpd on your host
Raspberry PI
SNMP extend script to get your PI data into your host.
SNMP Extend
-
Copy the raspberry script to
/etc/snmp/
(or any other suitable location) on your PI host. -
Make the script executable:
chmod +x /etc/snmp/raspberry.sh
-
Edit your snmpd.conf file (usually
/etc/snmp/snmpd.conf
) and add:
extend raspberry /etc/snmp/raspberry.sh
- Edit your sudo users (usually
visudo
) and add at the bottom:
snmp ALL=(ALL) NOPASSWD: /etc/snmp/raspberry.sh, /usr/bin/vcgencmd*
- Restart snmpd on PI host
SMART
SNMP Extend
1: Copy the Perl script, smart, to the desired host (the host must be added to LibreNMS devices) (wget https://github.com/librenms/librenms-agent/raw/master/snmp/smart -O /etc/snmp/smart)
2: Make the script executable (chmod +x /etc/snmp/smart)
3: Edit your snmpd.conf file and add:
extend smart /etc/snmp/smart
4: You will also need to create the config file, which defaults to the same path as the script, but with .config appended. So if the script is located at /etc/snmp/smart, the config file will be /etc/snmp/smart.config. Alternatively you can also specific a config via -c.
Anything starting with a # is comment. The format for variables is $variable=$value. Empty lines are ignored. Spaces and tabes at either the start or end of a line are ignored. Any line with out a = or # are treated as a disk.
#This is a comment
cache=/var/cache/smart
smartctl=/usr/bin/env smartctl
ada0
ada1
The variables are as below.
cache = The path to the cache file to use. Default: /var/cache/smart
smartctl = The path to use for smartctl. Default: /usr/bin/env smartctl
If you want to guess at the configuration, call it with -g and it will print out what it thinks it should be. This will result in a usable config, but may miss some less common disk devices.
5: Restart snmpd on your host
If you have a large number of more than one or two disks on a system, you should consider adding this to cron. Also make sure the cache file is some place it can be written to.
*/3 * * * * /etc/snmp/smart -u
Squid
SNMP Proxy
1: Enable SNMP for Squid like below, if you have not already, and restart it.
acl snmppublic snmp_community public
snmp_port 3401
snmp_access allow snmppublic localhost
snmp_access deny all
2: Restart squid on your host.
3: Edit your snmpd.conf file and add, making sure you have the same community, host, and port as above:
proxy -v 2c -c public 127.0.0.1:3401 1.3.6.1.4.1.3495
For more advanced information on Squid and SNMP or setting up proxying for net-snmp, please see the links below.
http://wiki.squid-cache.org/Features/Snmp http://www.net-snmp.org/wiki/index.php/Snmpd_proxy
TinyDNS aka djbdns
Agent
Install the agent on this device if it isn't already and copy the tinydns
script to /usr/lib/check_mk_agent/local/
Note: We assume that you use DJB's Daemontools to start/stop tinydns.
And that your tinydns instance is located in /service/dns
, adjust this path if necessary.
- Replace your log's
run
file, typically located in/service/dns/log/run
with:
#!/bin/sh
exec setuidgid dnslog tinystats ./main/tinystats/ multilog t n3 s250000 ./main/
- Create tinystats directory and chown:
mkdir /service/dns/log/main/tinystats
chown dnslog:nofiles /service/dns/log/main/tinystats
- Restart TinyDNS and Daemontools:
/etc/init.d/svscan restart
Note: Some saysvc -t /service/dns
is enough, on my install (Gentoo) it doesn't rehook the logging and I'm forced to restart it entirely.
Unbound
Unbound configuration:
# Enable extended statistics.
server:
extended-statistics: yes
statistics-cumulative: yes
remote-control:
control-enable: yes
control-interface: 127.0.0.1
Restart your unbound after changing the configuration, verify it is working by running 'unbound-control stats'.
Agent
Install the agent on this device if it isn't already and copy the unbound.sh
script to /usr/lib/check_mk_agent/local/
SNMP Extend
1: Copy the shell script, unbound, to the desired host (the host must be added to LibreNMS devices) (wget https://github.com/librenms/librenms-agent/raw/master/snmp/unbound -O /etc/snmp/unbound)
2: Make the scripts executable (chmod +x /etc/snmp/unbound)
3: Edit your snmpd.conf file and add:
extend unbound /etc/snmp/unbound
4: Restart snmpd.
UPS-nut
A small shell script that exports nut ups status.
SNMP Extend
-
Copy the ups nut to
/etc/snmp/
on your host. -
Make the script executable (chmod +x /etc/snmp/ups-nut.sh)
-
Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
extend ups-nut /etc/snmp/ups-nut.sh
- Restart snmpd on your host
UPS-apcups
A small shell script that exports apcacess ups status.
SNMP Extend
-
Copy the ups apcups to
/etc/snmp/
on your host. -
Make the script executable (chmod +x /etc/snmp/ups-apcups.sh)
-
Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
extend ups-apcups /etc/snmp/ups-apcups.sh
-
Restart snmpd on your host
-
On the device page in Librenms, edit your host and check the
UPS apcups
under the Applications tab.
SDFS info
A small shell script that exportfs SDFS volume info.
SNMP Extend
- Download the script onto the desired host (the host must be added to LibreNMS devices)
wget https://raw.githubusercontent.com/librenms/librenms-agent/master/snmp/sdfsinfo -O /etc/snmp/sdfsinfo
-
Make the script executable (chmod +x /etc/snmp/sdfsinfo)
-
Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
extend sdfsinfo /etc/snmp/sdfsinfo
-
Restart snmpd on your host
-
On the device page in Librenms, edit your host and check the
SDFS info
under the Applications tab or wait for it to be auto-discovered.