Cacti (home)ForumsRepositoryDocumentation
Cacti: offical forums and support  

 FAQFAQ   SearchSearch   MemberlistMemberlist    RegisterRegister   ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in    


NTP stats - who can make something, with this info?

 
Post new topic   Reply to topic    Cacti Forum Index -> Scripts and Templates
Author Message
evert



Joined: 21 Sep 2003
Posts: 27
Location: Sarpsborg, Norway

PostPosted: Fri Sep 10, 2004 2:49 am    Post subject: NTP stats - who can make something, with this info? Reply with quote

Hi everyone!

Any guru's here with spare time?

Is it possible to plot NTP stats? I found a RRD example on http://fortytwo.ch/stats/time/zbasel.fortytwo.ch/ but I have no idea on how to implement it in Cacti...
Back to top
pvd



Joined: 09 Aug 2003
Posts: 30

PostPosted: Wed Oct 06, 2004 12:31 pm    Post subject: Reply with quote

this is a script I use for the same sort of thing

[root@perch scripts]# cat ntp.pl
#!/usr/bin/perl

# ntpq -rv generates
#offset=-11.331, frequency=57.178, jitter=2.634, stability=0.351

$output = `ntpq -c rv | grep "^offset"` ;
$output =~ m/offset=(.*), frequency=(.*), jitter=(.*), stability=(.*)/;

print "offset:$1 frequency:$2 jitter:$3 stability:$4" ;

=========================================
It generates 4 values

offset time offset from "reality"
frequency my clock frequency
jitter the jitter of the clock
stability rtfm

In reality you may well just want to plot offset, so if this is the case, just change the print to

print "offset:$1 ;

then set up your data source to use a unix script.

One day Ill get my cacti working properly and export the config, but not today...

Phil
Back to top
kirigoe



Joined: 27 Aug 2004
Posts: 17
Location: sweden

PostPosted: Fri Oct 15, 2004 3:05 am    Post subject: Reply with quote

I'm getting some weird graphs from this script on a linux box running NTP 4.2.0, the graph is broken up as if the script failed to get the offset. has anyone else experienced this?


graph_5_1.jpg
 Description:
 Filesize:  27.55 KB
 Viewed:  8687 Time(s)

graph_5_1.jpg


Back to top
pvd



Joined: 09 Aug 2003
Posts: 30

PostPosted: Wed Oct 20, 2004 4:53 pm    Post subject: Reply with quote

Sadly yes I am getting that as well, it used to work with my last cacti install, I haven't got time right now, but if noone else fixes it, Ill investigate it and see if I can fix it in a few days.

Phil
Back to top
pvd



Joined: 09 Aug 2003
Posts: 30

PostPosted: Thu Oct 21, 2004 4:51 pm    Post subject: a better script Reply with quote

I have written a somewhat better script. So I suggest you try that one.

There is another post on the board in general help "returning -ve numbers from script command" about a fix for reading -ve numbers from scripts. Its just a couple of lines to edit in a file. If you are plotting offset, then you will need that fix as well, as the 0.8.6b by default does not do -ve numbers out of the box.

Let me know if that does not help. I will see what I can do

Phil



ntp.pl.gz
 Description:
ntp perl script

Download
 Filename:  ntp.pl.gz
 Filesize:  468 Bytes
 Downloaded:  1099 Time(s)

Back to top
Display posts from previous:   
Post new topic   Reply to topic    Cacti Forum Index -> Scripts and Templates All times are GMT - 5 Hours
Page 1 of 1

 



Powered by phpBB © 2001, 2005 phpBB Group