2016-08-24 08:12:20 +01:00
source: Extensions/Smokeping.md
2015-07-07 20:24:09 +01:00
# Smokeping integration
2016-01-30 21:06:58 -05:00
We currently have two ways to use Smokeping with LibreNMS, the first is using the included script generator to generate the config for Smokeping. The
2015-07-07 20:24:09 +01:00
second is to utilise an existing Smokeping setup.
### Included Smokeping script
To use this, please add something similar to your smokeping config file:
```bash
@include /opt/smokeping/etc/librenms.conf
```
2016-01-30 21:06:58 -05:00
Then you need to generate the config file (maybe even add a cron to schedule this in and reload smokeping). We've assumed a few locations for smokeping, the config file you want
2015-07-07 20:24:09 +01:00
to call it and where LibreNMS is:
```bash
cd /opt/librenms/scripts/
2015-07-08 00:25:38 +01:00
php ./gen_smokeping.php > /opt/smokeping/etc/librenms.conf
2015-07-07 20:24:09 +01:00
/opt/smokeping/bin/smokeping --reload
```
Sample cron:
```bash
2015-07-08 00:25:38 +01:00
15 0 * * * root cd /opt/librenms/scripts && php ./gen_smokeping.php > /opt/smokeping/etc/librenms.conf && /opt/smokeping/bin/smokeping --reload >> /dev/null 2>& 1
2015-07-07 20:24:09 +01:00
```
Now configure LibreNMS (make sure you point dir to your smokeping data directory:
```php
$config['smokeping']['dir'] = '/opt/smokeping/data';
2016-01-05 08:29:50 +10:00
$config['smokeping']['pings'] = 20; // should be equal to "pings" in your smokeping config
2015-07-07 20:24:09 +01:00
$config['smokeping']['integration'] = true;
```
### Standard Smokeping
This is quite simple, just point your dir at the smokeping data directory - please be aware that all RRD files need to be within this dir and NOT sub dirs:
```php
$config['smokeping']['dir'] = '/opt/smokeping/data';
2016-01-05 08:29:50 +10:00
$config['smokeping']['pings'] = 20; // should be equal to "pings" in your smokeping config
2015-07-07 20:24:09 +01:00
$config['own_hostname']
```
You should now see a new tab in your device page called ping.
2015-12-04 00:28:23 -06:00
2015-12-04 00:29:15 -06:00
### Install and integrate Smokeping [Debian/Ubuntu] ###
2015-12-04 00:28:23 -06:00
2016-08-18 23:46:15 +01:00
> This guide assumes you have already <a href="http://docs.librenms.org/Installation/Installing-LibreNMS/">installed librenms</a>, and you installed apache2 in the process. Tested with Ubuntu 14.04 and Apache 2.4.
2015-12-04 00:28:23 -06:00
Nearly everything we do will require root, and at one point we'll encounter a problem if we just use sudo, so we'll just switch to root at the beginning...
```bash
sudo su -
```
### Install Smokeping ###
```bash
apt-get install smokeping
```
At the end of installation, you may have gotten this error: `ERROR: /etc/smokeping/config.d/pathnames, line 1: File '/usr/sbin/sendmail' does not exist`
If so, just edit smokeping's pathnames.
```bash
nano /etc/smokeping/config.d/pathnames
```
Comment out the first line:
```bash
#sendmail = /usr/sbin/sendmail
```
Exit and save.
Check if the smokeping config file was created for apache2:
```bash
ls /etc/apache2/conf-available/
```
If you don't see `smokeping.conf` listed, you'll need to create a symlink for it:
```bash
ln -s /etc/smokeping/apache2.conf /etc/apache2/conf-available/smokeping.conf
```
Edit the smokeping config so smokeping knows the hostname it's running on:
```bash
nano /etc/smokeping/config.d/General
```
Change the `cgiurl` value to `http://yourhost/cgi-bin/smokeping.cgi`
Modify any other values you wish, then exit and save.
### LibreNMS integration ###
So far this is a relatively normal Smokeping installation; next we'll set up the LibreNMS integration.
Generate the configuration file so Smokeping knows the hosts you have set up for monitoring in LibreNMS.
```bash
cd /opt/librenms/scripts/
(echo "+ LibreNMS"; php ./gen_smokeping.php) > /etc/smokeping/config.d/librenms.conf
```
Add a cron job so as you add or remove hosts in librenms they'll get updated with Smokeping.
```bash
crontab -e
```
Add the example cron below; it's set to run daily at 02:05
2015-12-05 00:58:17 -06:00
```bash
05 02 * * * root cd /opt/librenms/scripts && (echo "+ LibreNMS"; php ./gen_smokeping.php) > /etc/smokeping/config.d/librenms.conf && service smokeping reload >> /dev/null
```
2015-12-04 00:28:23 -06:00
Exit and save.
Include `librenms.conf` in smokeping's config:
```bash
nano /etc/smokeping/config
2015-12-05 00:58:17 -06:00
```
2015-12-04 00:28:23 -06:00
Add the following line at the end:
2015-12-05 00:58:17 -06:00
```bash
@include /etc/smokeping/config.d/librenms.conf
```
2015-12-04 00:28:23 -06:00
Exit and save.
### Configure LibreNMS ###
```bash
nano /opt/librenms/config.php
```
Scroll to the bottom, and paste in the following:
2015-12-05 00:58:17 -06:00
```bash
$config['smokeping']['dir'] = '/var/lib/smokeping';
2016-01-05 08:29:50 +10:00
$config['smokeping']['pings'] = 20; // should be equal to "pings" in your smokeping config
2015-12-04 00:28:23 -06:00
$config['smokeping']['integration'] = true;
2015-12-05 00:58:17 -06:00
```
Exit and save.
2015-12-04 00:28:23 -06:00
Run the following commands:
```bash
a2enconf smokeping
a2enmod cgid
service apache2 restart
service smokeping restart
```
2015-12-05 01:30:34 -06:00
Return to your normal user shell
2015-12-04 00:28:23 -06:00
```bash
2015-12-05 01:30:34 -06:00
exit
2015-12-04 00:28:23 -06:00
```
Done! You should be able to load the Smokeping web interface at `http://yourhost/cgi-bin/smokeping.cgi`
In LibreNMS, a Ping tab should also appear.