Hardisk Temperature
Moderators: Developers, Moderators
Hardisk Temperature
I try to monitor my hardisk temperature.
I put in /scripts the hddtemp.sh with content:
-----------
/usr/sbin/smartctl -a /dev/hda | grep -i temperature | awk '{printf $10}';
-----------
The output is:
----
root@mydomain /var/www/html/cacti/scripts> \ #./hdtemp.sh
44root@mydomain/var/www/html/cacti/scripts> \ #
-----
I create a Data Input Methods with Input Type: Scripts/Command
<path_cacti>/scripts/hdtemp.sh
I create a Data Template and Graph Template.
This 3 stepts is required for own script!
http://docs.cacti.net/node/200
i have grafic but with nan values
In logs i see:
06/30/2008 12:30:02 PM - CMDPHP: Poller[0] Host[1] DS[9] CMD: /var/www/html/cacti/scripts/hdtemp.sh, output: U
06/30/2008 12:30:02 PM - CMDPHP: Poller[0] Host[1] DS[9] WARNING: Result from CMD not valid. Partial Result:
-----------
Why output: U
other log looks like:
06/30/2008 12:30:02 PM - CMDPHP: Poller[0] Host[1] DS[4] CMD: perl /var/www/html/cacti/scripts/linux_memory.pl SwapFree:, output: 1048592
06/30/2008 12:30:02 PM - CMDPHP: Poller[0] Host[1] DS[3] CMD: perl /var/www/html/cacti/scripts/linux_memory.pl MemFree:, output: 30304
with values after output:
Like i say, if i run the script in command line i have output. A number
I try to put in Data Input Methods:
<path_cacti>/scripts/hdtemp.sh
/bin/bash /var/www/html/cacti/scripts/hdtemp.sh
I miss something .
I think most of configuration in ok but the script in not executed right
I put in /scripts the hddtemp.sh with content:
-----------
/usr/sbin/smartctl -a /dev/hda | grep -i temperature | awk '{printf $10}';
-----------
The output is:
----
root@mydomain /var/www/html/cacti/scripts> \ #./hdtemp.sh
44root@mydomain/var/www/html/cacti/scripts> \ #
-----
I create a Data Input Methods with Input Type: Scripts/Command
<path_cacti>/scripts/hdtemp.sh
I create a Data Template and Graph Template.
This 3 stepts is required for own script!
http://docs.cacti.net/node/200
i have grafic but with nan values
In logs i see:
06/30/2008 12:30:02 PM - CMDPHP: Poller[0] Host[1] DS[9] CMD: /var/www/html/cacti/scripts/hdtemp.sh, output: U
06/30/2008 12:30:02 PM - CMDPHP: Poller[0] Host[1] DS[9] WARNING: Result from CMD not valid. Partial Result:
-----------
Why output: U
other log looks like:
06/30/2008 12:30:02 PM - CMDPHP: Poller[0] Host[1] DS[4] CMD: perl /var/www/html/cacti/scripts/linux_memory.pl SwapFree:, output: 1048592
06/30/2008 12:30:02 PM - CMDPHP: Poller[0] Host[1] DS[3] CMD: perl /var/www/html/cacti/scripts/linux_memory.pl MemFree:, output: 30304
with values after output:
Like i say, if i run the script in command line i have output. A number
I try to put in Data Input Methods:
<path_cacti>/scripts/hdtemp.sh
/bin/bash /var/www/html/cacti/scripts/hdtemp.sh
I miss something .
I think most of configuration in ok but the script in not executed right
Last edited by mandrk on Mon Jun 30, 2008 3:39 pm, edited 1 time in total.
- streaker69
- Cacti Pro User
- Posts: 712
- Joined: Mon Mar 27, 2006 10:35 am
- Location: Psychic Amish Network Administrator
try this:
You could also make your script a little more dynamic by doing this:
then pass which device into the script:
./hddtemp.sh hdb1
or whatever.
Then when you configure your Data Input Query, you could set it up to ask the user which harddrive they want to query for temp.
I've also removed the 't' from Temperature, just in case some drives have it capitalized or not. After all, not many other words end in 'emperature'.
Code: Select all
/usr/sbin/smartctl -a /dev/hda | grep -i temperature | awk '{printf $10"\n"}';
Code: Select all
/usr/sbin/smartctl -a /dev/$1 | grep -i emperature | awk '{printf $10"\n"}';
./hddtemp.sh hdb1
or whatever.
Then when you configure your Data Input Query, you could set it up to ask the user which harddrive they want to query for temp.
I've also removed the 't' from Temperature, just in case some drives have it capitalized or not. After all, not many other words end in 'emperature'.
[b]Cacti Version[/b] - 0.8.7d
[b]Plugin Architecture[/b] - 2.4
[b]Poller Type[/b] - Cactid v
[b]Server Info[/b] - Linux 2.6.18-128.1.6.el5
[b]Web Server[/b] - Apache/2.2.3 (CentOS)
[b]PHP[/b] - 5.2.9
[b]MySQL[/b] - 5.0.45-log
[b]RRDTool[/b] - 1.3.0
[b]SNMP[/b] - 5.3.2.2
[b]Plugins[/b]PHP Network Managing v0.6.1, Global Plugin Settings v0.6,thold v0.4.1,XMLPort v0.3.5,CactiCam v0.1.5,NetTools v0.1.5,pollperf v0.32,RRD Cleaner v1.1,sqlqueries v0.2,superlinks v0.8,syslog v0.5.2,update v0.4,discovery v0.9,zond v0.34a,hostinfo v0.2,Bloom v0.6.5,mactrack v1.1,weathermap v0.96a,mobile v0.1
[b]Plugin Architecture[/b] - 2.4
[b]Poller Type[/b] - Cactid v
[b]Server Info[/b] - Linux 2.6.18-128.1.6.el5
[b]Web Server[/b] - Apache/2.2.3 (CentOS)
[b]PHP[/b] - 5.2.9
[b]MySQL[/b] - 5.0.45-log
[b]RRDTool[/b] - 1.3.0
[b]SNMP[/b] - 5.3.2.2
[b]Plugins[/b]PHP Network Managing v0.6.1, Global Plugin Settings v0.6,thold v0.4.1,XMLPort v0.3.5,CactiCam v0.1.5,NetTools v0.1.5,pollperf v0.32,RRD Cleaner v1.1,sqlqueries v0.2,superlinks v0.8,syslog v0.5.2,update v0.4,discovery v0.9,zond v0.34a,hostinfo v0.2,Bloom v0.6.5,mactrack v1.1,weathermap v0.96a,mobile v0.1
Same result!
In the log i see
----------------------
06/30/2008 07:20:02 PM - CMDPHP: Poller[0] Host[1] DS[9] CMD: /var/www/html/cacti/scripts/hdtemp.sh, output: U
06/30/2008 07:20:02 PM - CMDPHP: Poller[0] Host[1] DS[9] WARNING: Result from CMD not valid. Partial Result: .
--------------------
The dynamic stuff is very cool,
In the log i see
----------------------
06/30/2008 07:20:02 PM - CMDPHP: Poller[0] Host[1] DS[9] CMD: /var/www/html/cacti/scripts/hdtemp.sh, output: U
06/30/2008 07:20:02 PM - CMDPHP: Poller[0] Host[1] DS[9] WARNING: Result from CMD not valid. Partial Result: .
--------------------
The dynamic stuff is very cool,
- streaker69
- Cacti Pro User
- Posts: 712
- Joined: Mon Mar 27, 2006 10:35 am
- Location: Psychic Amish Network Administrator
You have in your first post that you named the file hddtemp.sh and in your log file it's listed as hdtemp.shmandrk wrote:Same result!
In the log i see
----------------------
06/30/2008 07:20:02 PM - CMDPHP: Poller[0] Host[1] DS[9] CMD: /var/www/html/cacti/scripts/hdtemp.sh, output: U
06/30/2008 07:20:02 PM - CMDPHP: Poller[0] Host[1] DS[9] WARNING: Result from CMD not valid. Partial Result: .
--------------------
The dynamic stuff is very cool,
Looks like a typo in your Data Input Query for the script.
[b]Cacti Version[/b] - 0.8.7d
[b]Plugin Architecture[/b] - 2.4
[b]Poller Type[/b] - Cactid v
[b]Server Info[/b] - Linux 2.6.18-128.1.6.el5
[b]Web Server[/b] - Apache/2.2.3 (CentOS)
[b]PHP[/b] - 5.2.9
[b]MySQL[/b] - 5.0.45-log
[b]RRDTool[/b] - 1.3.0
[b]SNMP[/b] - 5.3.2.2
[b]Plugins[/b]PHP Network Managing v0.6.1, Global Plugin Settings v0.6,thold v0.4.1,XMLPort v0.3.5,CactiCam v0.1.5,NetTools v0.1.5,pollperf v0.32,RRD Cleaner v1.1,sqlqueries v0.2,superlinks v0.8,syslog v0.5.2,update v0.4,discovery v0.9,zond v0.34a,hostinfo v0.2,Bloom v0.6.5,mactrack v1.1,weathermap v0.96a,mobile v0.1
[b]Plugin Architecture[/b] - 2.4
[b]Poller Type[/b] - Cactid v
[b]Server Info[/b] - Linux 2.6.18-128.1.6.el5
[b]Web Server[/b] - Apache/2.2.3 (CentOS)
[b]PHP[/b] - 5.2.9
[b]MySQL[/b] - 5.0.45-log
[b]RRDTool[/b] - 1.3.0
[b]SNMP[/b] - 5.3.2.2
[b]Plugins[/b]PHP Network Managing v0.6.1, Global Plugin Settings v0.6,thold v0.4.1,XMLPort v0.3.5,CactiCam v0.1.5,NetTools v0.1.5,pollperf v0.32,RRD Cleaner v1.1,sqlqueries v0.2,superlinks v0.8,syslog v0.5.2,update v0.4,discovery v0.9,zond v0.34a,hostinfo v0.2,Bloom v0.6.5,mactrack v1.1,weathermap v0.96a,mobile v0.1
No is ok!. In my first post i write hddtemp.sh. Is a misstype. The true filname is hdtemp.sh.Looks like a typo in your Data Input Query for the script.
Step: 1
CREATE DATA INPUT METHODS
Input type : Script /Command
I use the <path_cacti>/scripts/hdtemp.sh Data Input Methods with 1 Output field named Input. I don't use input field yet ( you dynamic script must wait a lite bit . I must make this simple script to work.
Step2:
CREATE DATA TEMPLATE
I use the Data Input Method just created
Step3:
Create a Graph Template Items
Step4:
Make a grafic.
The grafic is maked after 1 cicle with nan value.
. wait for other some cicle...nan value
- streaker69
- Cacti Pro User
- Posts: 712
- Joined: Mon Mar 27, 2006 10:35 am
- Location: Psychic Amish Network Administrator
did you chown the file to the user that runs cacti?
for example:
chown -R apache:apache hdtemp.sh
did you make the file executable?
chmod +x hdtemp.sh
for example:
chown -R apache:apache hdtemp.sh
did you make the file executable?
chmod +x hdtemp.sh
[b]Cacti Version[/b] - 0.8.7d
[b]Plugin Architecture[/b] - 2.4
[b]Poller Type[/b] - Cactid v
[b]Server Info[/b] - Linux 2.6.18-128.1.6.el5
[b]Web Server[/b] - Apache/2.2.3 (CentOS)
[b]PHP[/b] - 5.2.9
[b]MySQL[/b] - 5.0.45-log
[b]RRDTool[/b] - 1.3.0
[b]SNMP[/b] - 5.3.2.2
[b]Plugins[/b]PHP Network Managing v0.6.1, Global Plugin Settings v0.6,thold v0.4.1,XMLPort v0.3.5,CactiCam v0.1.5,NetTools v0.1.5,pollperf v0.32,RRD Cleaner v1.1,sqlqueries v0.2,superlinks v0.8,syslog v0.5.2,update v0.4,discovery v0.9,zond v0.34a,hostinfo v0.2,Bloom v0.6.5,mactrack v1.1,weathermap v0.96a,mobile v0.1
[b]Plugin Architecture[/b] - 2.4
[b]Poller Type[/b] - Cactid v
[b]Server Info[/b] - Linux 2.6.18-128.1.6.el5
[b]Web Server[/b] - Apache/2.2.3 (CentOS)
[b]PHP[/b] - 5.2.9
[b]MySQL[/b] - 5.0.45-log
[b]RRDTool[/b] - 1.3.0
[b]SNMP[/b] - 5.3.2.2
[b]Plugins[/b]PHP Network Managing v0.6.1, Global Plugin Settings v0.6,thold v0.4.1,XMLPort v0.3.5,CactiCam v0.1.5,NetTools v0.1.5,pollperf v0.32,RRD Cleaner v1.1,sqlqueries v0.2,superlinks v0.8,syslog v0.5.2,update v0.4,discovery v0.9,zond v0.34a,hostinfo v0.2,Bloom v0.6.5,mactrack v1.1,weathermap v0.96a,mobile v0.1
I give chmod 777
Yes make executable from first time with chmod +x hdtemp.sh
4 -rwxr-xr-x 1 root root 166 Jun 30 09:11 diskfree.sh
4 -rwxrwxrwx 1 root root 250 Jun 30 21:39 hdtemp.sh
4 -rw-r--r-- 1 root root 174 Feb 12 02:57 linux_memory.pl
4 -rw-r--r-- 1 root root 282 Feb 12 02:57 loadavg_multi.pl
4 -rw-r--r-- 1 root root 401 Feb 12 02:57 loadavg.pl
Diskfree runs without problem under root
Diskfree.sh returns me the:
root@mydomain /var/www/html/cacti/scripts> \ #./diskfree.sh
megabytes:14772384 percent:49megabytes:17329792 percent:10megabytes:77043 percent:18megabytes:257708 percent:0megabytes:10598280 percent:57root@mydomain /var/www/html/cacti/scripts> \ #
hdtemp return some type of data
root@mydomain /var/www/html/cacti/scripts> \ #./hdtemp.sh
43root@mydomain /var/www/html/cacti/scripts> \ #
I try to put in hdtemp.sh
/usr/sbin/smartctl -a /dev/hda | grep -i temperature | awk '{printf "Input:"$10}' ;
That returns me value:
root@mydomain /var/www/html/cacti/scripts> \ #./hdtemp.sh
Input:43root@mydomain /var/www/html/cacti/scripts> \ #
Same result
Yes make executable from first time with chmod +x hdtemp.sh
4 -rwxr-xr-x 1 root root 166 Jun 30 09:11 diskfree.sh
4 -rwxrwxrwx 1 root root 250 Jun 30 21:39 hdtemp.sh
4 -rw-r--r-- 1 root root 174 Feb 12 02:57 linux_memory.pl
4 -rw-r--r-- 1 root root 282 Feb 12 02:57 loadavg_multi.pl
4 -rw-r--r-- 1 root root 401 Feb 12 02:57 loadavg.pl
Diskfree runs without problem under root
Diskfree.sh returns me the:
root@mydomain /var/www/html/cacti/scripts> \ #./diskfree.sh
megabytes:14772384 percent:49megabytes:17329792 percent:10megabytes:77043 percent:18megabytes:257708 percent:0megabytes:10598280 percent:57root@mydomain /var/www/html/cacti/scripts> \ #
hdtemp return some type of data
root@mydomain /var/www/html/cacti/scripts> \ #./hdtemp.sh
43root@mydomain /var/www/html/cacti/scripts> \ #
I try to put in hdtemp.sh
/usr/sbin/smartctl -a /dev/hda | grep -i temperature | awk '{printf "Input:"$10}' ;
That returns me value:
root@mydomain /var/www/html/cacti/scripts> \ #./hdtemp.sh
Input:43root@mydomain /var/www/html/cacti/scripts> \ #
Same result
Done!gandalf wrote:Please provide /full/path/to/grep and same for awk
Reinhard
replace my line with :
/usr/sbin/smartctl -a /dev/hda | /bin/grep -i temperature | /bin/awk '{printf $10}';
The result in command line is :
root@mydomain /var/www/html/cacti/scripts> \ #/usr/sbin/smartctl -a /dev/hda | /bin/grep -i temperature | /bin/awk '{printf $10}';
42root@mydomain /var/www/html/cacti/scripts> \ #
If i put print not printf the result is
root@mydomain /var/www/html/cacti/scripts> \ #/usr/sbin/smartctl -a /dev/hda | /bin/grep -i temperature | /bin/awk '{print $10}';
42
root@mydomain /var/www/html/cacti/scripts> \ #
The 42 value is printed to new line.
What is good choice for cacti
printf or print?
I don't now Perl to try the script in perl language
In loggs :
06/30/2008 11:30:02 PM - CMDPHP: Poller[0] Host[1] DS[11] CMD: /var/www/html/cacti/scripts/hdtemp.sh, output: U
06/30/2008 11:30:02 PM - CMDPHP: Poller[0] Host[1] DS[11] WARNING: Result from CMD not valid. Partial Result:
smartctl require root user. Cacti cron job is usually run under an apache or www-data user and can not use smartctl.mandrk wrote:Diskfree runs without problem under root
...
I try to put in hdtemp.sh
/usr/sbin/smartctl -a /dev/hda | grep -i temperature | awk '{printf "Input:"$10}' ;
You need to configure sudo, or write a setuid wrapper.
- streaker69
- Cacti Pro User
- Posts: 712
- Joined: Mon Mar 27, 2006 10:35 am
- Location: Psychic Amish Network Administrator
I have the exact same script that he was working with yesterday running on my box, apparently it's running as apache, without any issues.koocotte wrote:smartctl require root user. Cacti cron job is usually run under an apache or www-data user and can not use smartctl.mandrk wrote:Diskfree runs without problem under root
...
I try to put in hdtemp.sh
/usr/sbin/smartctl -a /dev/hda | grep -i temperature | awk '{printf "Input:"$10}' ;
You need to configure sudo, or write a setuid wrapper.
-rwxr-xr-x 1 apache apache 91 Jun 30 09:54 hddtemp.sh
- Attachments
-
- SP32-20080701-095111.gif (27.12 KiB) Viewed 11143 times
[b]Cacti Version[/b] - 0.8.7d
[b]Plugin Architecture[/b] - 2.4
[b]Poller Type[/b] - Cactid v
[b]Server Info[/b] - Linux 2.6.18-128.1.6.el5
[b]Web Server[/b] - Apache/2.2.3 (CentOS)
[b]PHP[/b] - 5.2.9
[b]MySQL[/b] - 5.0.45-log
[b]RRDTool[/b] - 1.3.0
[b]SNMP[/b] - 5.3.2.2
[b]Plugins[/b]PHP Network Managing v0.6.1, Global Plugin Settings v0.6,thold v0.4.1,XMLPort v0.3.5,CactiCam v0.1.5,NetTools v0.1.5,pollperf v0.32,RRD Cleaner v1.1,sqlqueries v0.2,superlinks v0.8,syslog v0.5.2,update v0.4,discovery v0.9,zond v0.34a,hostinfo v0.2,Bloom v0.6.5,mactrack v1.1,weathermap v0.96a,mobile v0.1
[b]Plugin Architecture[/b] - 2.4
[b]Poller Type[/b] - Cactid v
[b]Server Info[/b] - Linux 2.6.18-128.1.6.el5
[b]Web Server[/b] - Apache/2.2.3 (CentOS)
[b]PHP[/b] - 5.2.9
[b]MySQL[/b] - 5.0.45-log
[b]RRDTool[/b] - 1.3.0
[b]SNMP[/b] - 5.3.2.2
[b]Plugins[/b]PHP Network Managing v0.6.1, Global Plugin Settings v0.6,thold v0.4.1,XMLPort v0.3.5,CactiCam v0.1.5,NetTools v0.1.5,pollperf v0.32,RRD Cleaner v1.1,sqlqueries v0.2,superlinks v0.8,syslog v0.5.2,update v0.4,discovery v0.9,zond v0.34a,hostinfo v0.2,Bloom v0.6.5,mactrack v1.1,weathermap v0.96a,mobile v0.1
This is frightening.streaker69 wrote:I have the exact same script that he was working with yesterday running on my box, apparently it's running as apache, without any issues.
streaker69, can you post the result of
ls -l /usr/sbin/smartctl /dev/hda
changing /dev/hda according to you system?
I have
Code: Select all
brw-rw---- 1 root disk 8, 0 2008-05-14 23:04 /dev/sda
-rwxr-xr-x 1 root root 157284 2006-09-29 15:50 /usr/sbin/smartctl
Code: Select all
su - www-data
cd /var/www/html/cacti/scripts
./hdtemp.sh
- streaker69
- Cacti Pro User
- Posts: 712
- Joined: Mon Mar 27, 2006 10:35 am
- Location: Psychic Amish Network Administrator
I tested his script out against my second HD in this machine, as the first HD doesn't report Temp.rw-r----- 1 root disk 3, 65 Jun 30 08:45 /dev/hdb1
-rwxr-xr-x 1 root root 187224 May 24 12:42 /usr/sbin/smartctl
[b]Cacti Version[/b] - 0.8.7d
[b]Plugin Architecture[/b] - 2.4
[b]Poller Type[/b] - Cactid v
[b]Server Info[/b] - Linux 2.6.18-128.1.6.el5
[b]Web Server[/b] - Apache/2.2.3 (CentOS)
[b]PHP[/b] - 5.2.9
[b]MySQL[/b] - 5.0.45-log
[b]RRDTool[/b] - 1.3.0
[b]SNMP[/b] - 5.3.2.2
[b]Plugins[/b]PHP Network Managing v0.6.1, Global Plugin Settings v0.6,thold v0.4.1,XMLPort v0.3.5,CactiCam v0.1.5,NetTools v0.1.5,pollperf v0.32,RRD Cleaner v1.1,sqlqueries v0.2,superlinks v0.8,syslog v0.5.2,update v0.4,discovery v0.9,zond v0.34a,hostinfo v0.2,Bloom v0.6.5,mactrack v1.1,weathermap v0.96a,mobile v0.1
[b]Plugin Architecture[/b] - 2.4
[b]Poller Type[/b] - Cactid v
[b]Server Info[/b] - Linux 2.6.18-128.1.6.el5
[b]Web Server[/b] - Apache/2.2.3 (CentOS)
[b]PHP[/b] - 5.2.9
[b]MySQL[/b] - 5.0.45-log
[b]RRDTool[/b] - 1.3.0
[b]SNMP[/b] - 5.3.2.2
[b]Plugins[/b]PHP Network Managing v0.6.1, Global Plugin Settings v0.6,thold v0.4.1,XMLPort v0.3.5,CactiCam v0.1.5,NetTools v0.1.5,pollperf v0.32,RRD Cleaner v1.1,sqlqueries v0.2,superlinks v0.8,syslog v0.5.2,update v0.4,discovery v0.9,zond v0.34a,hostinfo v0.2,Bloom v0.6.5,mactrack v1.1,weathermap v0.96a,mobile v0.1
- streaker69
- Cacti Pro User
- Posts: 712
- Joined: Mon Mar 27, 2006 10:35 am
- Location: Psychic Amish Network Administrator
Either one returns the same values.koocotte wrote:Your second HD is labelled /dev/hdb and not /dev/hdb1streaker69 wrote:I tested his script out against my second HD in this machine, as the first HD doesn't report Temp.rw-r----- 1 root disk 3, 65 Jun 30 08:45 /dev/hdb1
-rwxr-xr-x 1 root root 187224 May 24 12:42 /usr/sbin/smartctl
[b]Cacti Version[/b] - 0.8.7d
[b]Plugin Architecture[/b] - 2.4
[b]Poller Type[/b] - Cactid v
[b]Server Info[/b] - Linux 2.6.18-128.1.6.el5
[b]Web Server[/b] - Apache/2.2.3 (CentOS)
[b]PHP[/b] - 5.2.9
[b]MySQL[/b] - 5.0.45-log
[b]RRDTool[/b] - 1.3.0
[b]SNMP[/b] - 5.3.2.2
[b]Plugins[/b]PHP Network Managing v0.6.1, Global Plugin Settings v0.6,thold v0.4.1,XMLPort v0.3.5,CactiCam v0.1.5,NetTools v0.1.5,pollperf v0.32,RRD Cleaner v1.1,sqlqueries v0.2,superlinks v0.8,syslog v0.5.2,update v0.4,discovery v0.9,zond v0.34a,hostinfo v0.2,Bloom v0.6.5,mactrack v1.1,weathermap v0.96a,mobile v0.1
[b]Plugin Architecture[/b] - 2.4
[b]Poller Type[/b] - Cactid v
[b]Server Info[/b] - Linux 2.6.18-128.1.6.el5
[b]Web Server[/b] - Apache/2.2.3 (CentOS)
[b]PHP[/b] - 5.2.9
[b]MySQL[/b] - 5.0.45-log
[b]RRDTool[/b] - 1.3.0
[b]SNMP[/b] - 5.3.2.2
[b]Plugins[/b]PHP Network Managing v0.6.1, Global Plugin Settings v0.6,thold v0.4.1,XMLPort v0.3.5,CactiCam v0.1.5,NetTools v0.1.5,pollperf v0.32,RRD Cleaner v1.1,sqlqueries v0.2,superlinks v0.8,syslog v0.5.2,update v0.4,discovery v0.9,zond v0.34a,hostinfo v0.2,Bloom v0.6.5,mactrack v1.1,weathermap v0.96a,mobile v0.1
Who is online
Users browsing this forum: No registered users and 3 guests