1NTPSHMMON(1) GPSD Documentation NTPSHMMON(1)
2
3
4
6 ntpshmmon - capture samples from GPS or other ntpd refclock sources
7
9 ntpshmmon [-h] [-n nsamples] [-s] [-t seconds] [-v] [-V]
10
12 This program monitors the shared-memory segments updated by gpsd(8)
13 (and possibly other refclock sources) as a way of communicating with
14 ntpd, the Network Time Protocol daemon. It reads these in exactly the
15 way an ntpd instance does. It can be run concurrently with ntpd without
16 interfering with ntpd's normal operation.
17
18 This program runs forever, or until a termination option is matched, or
19 until interrupted, generating sample reports to standard output. Each
20 line consists of whitespace-separated textual fields.
21
22 Here is an example of the beginning of a report file:
23
24 ntpshmmon version 1
25 # Name Seen@ Clock Real L Prec
26 sample NTP2 1424926256.443030206 1424926256.115869233 1424926256.000000000 0 -1
27 sample NTP3 1424926256.443060517 1424926255.995430821 1424926256.000000000 0 -20
28 sample NTP3 1424926256.995747347 1424926256.995422728 1424926257.000000000 0 -20
29 sample NTP2 1424926257.112433572 1424926257.111936726 1424926257.000000000 0 -1
30 sample NTP3 1424926257.996221153 1424926257.995410232 1424926258.000000000 0 -20
31 sample NTP2 1424926258.107769409 1424926258.107451006 1424926258.000000000 0 -1
32 sample NTP3 1424926258.995647636 1424926258.995406476 1424926259.000000000 0 -20
33
34 The output always begins with a header line expressing the version of
35 the output format; the version line begins with "ntpshmmon version" and
36 is followed by a numeric version field.
37
38 The remainder of the file is either commments or sample lines. A
39 comment line begins with a # and should ignored by programs that
40 interpret this format. This program never generates such lines itself.
41
42 The fields of a sample line are as follows:
43
44 1. The keyword "sample"
45
46 2. The NTP unit from which it was collected.
47
48 3. Collection time of day, seconds.
49
50 4. Receiver time of day, seconds.
51
52 5. Clock time of day, seconds.
53
54 6. Leap-second notification status.
55
56 7. Source precision (log(2) of source jitter).
57
58 In these fields, "clock time" is the high-precision time measured by
59 the source and "receiver time" is Unix UTC time at the receiver. It is
60 normal for the seconds part of receiver time to coincide with the
61 seconds part of collection time and for the nanoseconds part of
62 receiver time to be zero.
63
64 -v
65 Enable verbose status messages.
66
67 -c
68 Device poll interval in fractional seconds - defaults to 1.
69
70 -n
71 Set maximum number of samples to collect.
72
73 -s
74 Remove all SHM segments used by GPSD. This option will normally
75 only be of interest to GPSD developers.
76
77 -t
78 Set maximum time to collect samples in seconds.
79
80 -h
81 Display program usage and exit.
82
83 -V
84 Display program version and exit.
85
87 gpsd(8), gpsdctl(8), gps(1), libgps(3), libgpsmm(3), gpsprof(1),
88 gpsfake(1).
89
91 Eric S. Raymond <esr@thyrsus.com>.
92
93
94
95The GPSD Project 25 Jan 2015 NTPSHMMON(1)