Ping Graph without values
Moderators: Developers, Moderators
Ping Graph without values
Hello,
yesterday I have update my debian cacti maschine from debian 5.0.5 to 6.0.4. During this update also cacti was updated to version 0.8.7g. Every works fine, but only the graphs for ping latency are empty. I can create new graphs for ping latency, but the graph will also show any value.
Thank you very much for help.
Jörg
yesterday I have update my debian cacti maschine from debian 5.0.5 to 6.0.4. During this update also cacti was updated to version 0.8.7g. Every works fine, but only the graphs for ping latency are empty. I can create new graphs for ping latency, but the graph will also show any value.
Thank you very much for help.
Jörg
Re: Ping Graph without values
Hello,
Cacti writes every 5 minutes in the rrd-file for this graph, this file exists in the folder /var/lib/cacti/rra.
All other graphs (errors, non-Unicast, unicast) are correctly displayed, and the rrd-files are in the same folder.
I think the permissions are correct, because other graphs are ok.
Jörg
Cacti writes every 5 minutes in the rrd-file for this graph, this file exists in the folder /var/lib/cacti/rra.
All other graphs (errors, non-Unicast, unicast) are correctly displayed, and the rrd-files are in the same folder.
I think the permissions are correct, because other graphs are ok.
Jörg
-
- Cacti Pro User
- Posts: 613
- Joined: Tue Aug 29, 2006 4:09 pm
- Location: NL
Re: Ping Graph without values
Please inspect the log files, either via the cacti menu's or directly in /var/log/cacti/ and see if there is anything suspicious there.
You can also test if you get a proper answer by running the "ping" script manually.
You can also test if you get a proper answer by running the "ping" script manually.
Code: Select all
perl /usr/share/cacti/site/scripts/ping.pl 127.0.0.1
Maintainer of cacti in Debian (and Ubuntu).
Cacti 1.* is now officially supported on Debian Stretch via Debian backports
FAQ Ubuntu and Debian differences
Generic cacti debugging
Cacti 1.* is now officially supported on Debian Stretch via Debian backports
FAQ Ubuntu and Debian differences
Generic cacti debugging
Re: Ping Graph without values
Hello,
I have looked in the cacti log-file in the folder /var/log/cacti, but I have found nothing interestet.
when I start the perl script
I get no Output.
What means the U ?
Do you have an idea? At this moment I have no idea.
Thank you very much.
Jörg
I have looked in the cacti log-file in the folder /var/log/cacti, but I have found nothing interestet.
when I start the perl script
Code: Select all
/usr/bin/perl /usr/share/cacti/site/scripts/ping.pl 127.0.0.1
Code: Select all
debian:/usr/bin# /usr/bin/perl /usr/share/cacti/site/scripts/ping.pl 127.0.0.1
Udebian:/usr/bin#
Do you have an idea? At this moment I have no idea.
Thank you very much.
Jörg
-
- Cacti Pro User
- Posts: 613
- Joined: Tue Aug 29, 2006 4:09 pm
- Location: NL
Re: Ping Graph without values
This means that there was no proper output of the ping command.jmit wrote: What means the U ?
Do you have an idea? At this moment I have no idea.
What do you get if you run:
Code: Select all
ping -c 1 127.0.0.1
Maintainer of cacti in Debian (and Ubuntu).
Cacti 1.* is now officially supported on Debian Stretch via Debian backports
FAQ Ubuntu and Debian differences
Generic cacti debugging
Cacti 1.* is now officially supported on Debian Stretch via Debian backports
FAQ Ubuntu and Debian differences
Generic cacti debugging
Re: Ping Graph without values
Hello,
I have solved the problem, but I am not in the office. I will write tomorrow how I have solved the problem.
Jörg
I have solved the problem, but I am not in the office. I will write tomorrow how I have solved the problem.
Jörg
Re: Ping Graph without values
Hello,
I couldn't believe it, but it was e little error in the file ping.pl
The original file was the following:
The error was in the following line:
and the change in this line must be the following
@paulgevers: Thank you very much for your help
Everything is ok
Thank you very much
Jörg
I couldn't believe it, but it was e little error in the file ping.pl
The original file was the following:
Code: Select all
#!/usr/bin/perl
# take care for tcp:hostname or TCP:ip@
$host = $ARGV[0];
$host =~ s/tcp:/$1/gis;
open(PROCESS, "ping -c 1 $host | grep icmp_seq | grep time |");
$ping = <PROCESS>;
close(PROCESS);
$ping =~ m/(.*time=)(.*) (ms|usec)/;
if ($2 == "") {
print "U"; # avoid cacti errors, but do not fake rrdtool stats
}elsif ($3 eq "usec") {
print $2/1000; # re-calculate in units of "ms"
}else{
print $2;
}
Code: Select all
open(PROCESS, "ping -c 1 $host | grep icmp_seq | grep time |");
Code: Select all
open(PROCESS, "ping -c 1 $host | grep icmp_req | grep time |");
Everything is ok
Thank you very much
Jörg
- gandalf
- Developer
- Posts: 22383
- Joined: Thu Dec 02, 2004 2:46 am
- Location: Muenster, Germany
- Contact:
Re: Ping Graph without values
The remark is correct, but the fix is already available since ages as a patch and/or as part of the code of newer releases
R.
R.
Re: Ping Graph without values
I have updated cacti during the update of debian from version 5.0.5 to 6.0.4 and I think that's the reason I haven't get the patch.gandalf wrote:The remark is correct, but the fix is already available since ages as a patch and/or as part of the code of newer releases
R.
Where can I get the patches for cacti?
Jörg
-
- Cacti Pro User
- Posts: 613
- Joined: Tue Aug 29, 2006 4:09 pm
- Location: NL
Re: Ping Graph without values
As the dependencies of cacti are not versioned, you could also install the debian deb file for weezy. Not the recommended way to administer a Debian box, but I guess smarter than patching (not interfering with the package). Download the .deb file from here [1] and install with "dpkg -i".jmit wrote: I have updated cacti during the update of debian from version 5.0.5 to 6.0.4 and I think that's the reason I haven't get the patch.
Where can I get the patches for cacti?
FYI: I will create a cacti repository on Launchpad [2] in the future that should allow you to add it to your apt sources, which is much smarter than using dpkg -i.
[1] http://packages.debian.org/sid/all/cacti/download
[2] https://launchpad.net/~paul-climbing/+archive/cacti
Maintainer of cacti in Debian (and Ubuntu).
Cacti 1.* is now officially supported on Debian Stretch via Debian backports
FAQ Ubuntu and Debian differences
Generic cacti debugging
Cacti 1.* is now officially supported on Debian Stretch via Debian backports
FAQ Ubuntu and Debian differences
Generic cacti debugging
Re: Ping Graph without values
@paulgevers:
Thank you very much for the info.
@gandalf:
I have searched on this web-site but I haven't found it.
Thank you very much.
Jörg
Thank you very much for the info.
@gandalf:
I have searched on this web-site but I haven't found it.
Thank you very much.
Jörg
Who is online
Users browsing this forum: No registered users and 0 guests