Search found 9 matches

by mactfines
Mon Jul 24, 2006 7:34 am
Forum: Help: General
Topic: 'Maximum' value is often incorrect. Why?
Replies: 7
Views: 1667

'Maximum' value is often incorrect. Why?

Hi, I am not sure whether the problem is my misunderstanding of rrdtool or Cacti, but it appears that Maximum values do not get displayed correctly. Look at the first graph below, which states the Maximum is 28.97. Now the 2nd graph, where I clicked on the magnifying glass tool and zoomed in to just...
by mactfines
Sun Apr 30, 2006 9:58 am
Forum: Plugin General
Topic: URLs for Cacti Hosts
Replies: 7
Views: 7249

I think you may have missed it. I tried out the new patch on a clean install and everything seemed to work. Try restoring the original versions of these files and running the patch again: host.php lib/api_device.php lib/html_tree.php include/config_form.php I'll upload a tar of just these files, tak...
by mactfines
Sun Apr 30, 2006 7:57 am
Forum: Plugin General
Topic: URLs for Cacti Hosts
Replies: 7
Views: 7249

OK, great. Here is the latest .tar file (this forum wouldn't allow .tgz files for some reason).
by mactfines
Sat Apr 29, 2006 4:42 pm
Forum: Plugin General
Topic: URLs for Cacti Hosts
Replies: 7
Views: 7249

Thanks for taking the time to look at it. I fixed the instructions in the readme file for the MySQL commands. I also fixed the instructions and the patch for the patch command so users won't get prompted for a filename. I also modified the description for the URL field on the web page so it specific...
by mactfines
Sat Apr 29, 2006 9:34 am
Forum: Plugin General
Topic: URLs for Cacti Hosts
Replies: 7
Views: 7249

URLs for Cacti Hosts

I have made a handy change to Cacti which allows you to specify a URL for a Device, which is clickable when you're looking at Graphs. For instance, when you're in Graphs looking at "Tree: Internet Connection Systems-> Host: Internet Router", the text 'Internet Router' will be a link which ...
by mactfines
Sun Apr 23, 2006 9:23 am
Forum: Scripts and Templates
Topic: SNMP uptime query observation
Replies: 4
Views: 12794

From: http://www.alvestrand.no/objectid/1.3.6.1.2.1.1.3.html OID value: 1.3.6.1.2.1.1.3 OID description: sysUpTime OBJECT-TYPE SYNTAX TimeTicks ACCESS read-only STATUS mandatory DESCRIPTION "The time (in hundredths of a second) since the network management portion of the system was last re-init...
by mactfines
Fri Apr 21, 2006 7:21 am
Forum: Scripts and Templates
Topic: SNMP uptime query observation
Replies: 4
Views: 12794

That's what I thought might be happening also. But that isn't the problem. SNMP's uptime shows the time the snmpd daemon has been running, and here is the proof: qmail# ./snmp_uptime.pl localhost SNMP::Info::_global uptime : sysUpTime.0 uptime: 17057898 qmail# /usr/local/etc/rc.d/snmpd.sh stop Stopp...
by mactfines
Thu Apr 20, 2006 4:58 pm
Forum: Scripts and Templates
Topic: SNMP uptime query observation
Replies: 4
Views: 12794

SNMP uptime query observation

Hi, When I query a RedHat EL 3 system which has been up for 8 hours, 57 minutes, using an snmp query for uptime, I get back a value of : 3220881 My understanding is this is in 1/100ths of a second, so about 32,208 seconds, which is about 536 minutes (32,208/60), which is 8.94 hours (536/60). OK, tha...
by mactfines
Thu Apr 20, 2006 4:33 pm
Forum: Scripts and Templates
Topic: FreeBSD Uptime Script problem
Replies: 1
Views: 1672

FreeBSD Uptime Script problem

Hi, First, thank you to the developers and contributors for Cacti. FreeBSD doesn't have /proc/uptime like Linux, so I wrote a small trivial script which takes no arguments, and prints out the uptime in days. Here it is: #!/usr/bin/perl my $boottime = `sysctl -h kern.boottime`; $boottime =~ s/.* sec ...