Go to file
Matthew Connelly 43a598a1e7 Update README.md 2017-07-22 22:16:58 +01:00
plugins.d Made ADSL latency graph a little neater 2015-12-13 18:03:57 +00:00
LICENSE Initial commit 2015-02-19 17:56:27 +00:00
README.md Update README.md 2017-07-22 22:16:58 +01:00
munin-node Version bump 2016-03-15 20:19:41 +00:00
xinetd-munin-node.conf Added xinetd stuff 2015-02-19 22:08:38 +00:00

README.md

openwrt-munin-node

openwrt-oriented munin-node implementation inspired by muninlite

Quick installation guide

Install munin-node and the bundled plugins:

opkg update
opkg install curl
mkdir -p /usr/local/bin /etc/munin-node
cd /etc/munin-node
curl -Lko munin-node.tar.gz https://github.com/MaffC/openwrt-munin-node/archive/master.tar.gz
tar xzf munin-node.tar.gz openwrt-munin-node-master/plugins.d
tar xzf munin-node.tar.gz openwrt-munin-node-master/xinetd-munin-node.conf
tar xzf munin-node.tar.gz openwrt-munin-node-master/munin-node -C /usr/local/bin/
rm munin-node.tar.gz

Install dependencies for included plugins as needed (note xinetd is not a plugin dependency and is needed for general operation unless you have another inetd; curl is a plugin dependency but is installed if you follow the above quick installation guide):

opkg update
opkg install perl curl iwinfo xinetd

Add munin to your /etc/services file (feel free to change the port):

vi /etc/services
# add the following line:
munin		4949/tcp

Configure, enable and start the inetd server:

mv /etc/munin-node/xinetd-munin-node.conf /etc/xinetd.d/munin-node
/etc/init.d/xinetd enable
/etc/init.d/xinetd start