Bug #146
RRD Tool needs to be implemented
Status: | Closed | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | 12/31/1969 | |
Assignee: | jams | % Done: | 0% |
|
Category: | - | Spent time: | - | |
Target version: | 6.00.04 |
Description
RRD Tool needs to be implemented.
History
Updated by tjc almost 16 years ago
Definitely missing...
Updated by chrisj over 15 years ago
I have sorted out howto get RRD running , still working on mbmon.
I had to make soem changes to the perl script's and will hope to have them combinded into one soon. I am attempting to make a web based configuration page for rrd as well. Should have it finished in the next week or so.
This was the steps that I took to get the basics running.
Install hddtemp
cd /tmp
wget http://download.savannah.nongnu.org/releases/hddtemp/hddtemp-0.3-beta15.tar.bz2
wget http://download.savannah.nongnu.org/releases/hddtemp/hddtemp.db
mv hddtemp.db /etc/hddtemp.db
tar -jxvf hddtemp-0.3-beta15.tar.bz2
cd hddtemp-0.3-beta15
sudo ./configure --with-db-path=/etc/hddtemp.db
sudo make
sudo make install
Install Sysstat
cd /tmp
wget http://pagesperso-orange.fr/sebastien.godard/sysstat-9.0.2.tar.gz
tar -zxvf sysstat-9.0.2.tar.gz
cd sysstat-9.0.2
sudo ./configure
sudo make
sudo make install
Install mbmon
cd /tmp
wget http://www.nt.phys.kyushu-u.ac.jp/shimizu/download/xmbmon/xmbmon205.tar.gz
tar -zxvf xmbmon205.tar.gz
cd xmbmon205
sudo ./configure
sudo make
sudo make install
Install RRD
sudo pacman -S rrdtool
Create rdd lib directory
sudo mkdir /var/lib/rrd
Add the folling to root's crontab
# get hdd temps for rrdtool
*/5 * * * * root /usr/local/bin/rrd_hddtemp.pl > /dev/null
# get hdd io for rrdtool
*/5 * * * * root /usr/local/bin/rrd_disk.pl > /dev/null
# get ip traffic for rrdtool
*/5 * * * * root /usr/local/bin/rrd_traffic.pl > /dev/null
# get mem data for rrdtool
*/5 * * * * root /usr/local/bin/rrd_mem.pl > /dev/null
# get cpu data for rrdtool
*/5 * * * * root /usr/local/bin/rrd_cpu.pl > /dev/null
Updated by jams almost 13 years ago
- Target version changed from 8.0 to 6.00.04