aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Nozdriukhin <alex-nozzz@mail.ru>2020-04-18 00:51:11 +0300
committerAlex Nozdriukhin <alex-nozzz@mail.ru>2020-04-18 00:53:57 +0300
commit744e334ef9c5e75a9faaa8aed6fab6d0ca41bad5 (patch)
tree6649b983e94a2674c5fa17e2d880af0b0a6976f4
parentfa4edd700ebc1b3614bcd953c215d3f2ab2e0b35 (diff)
downloadprometheus_node_collector-744e334ef9c5e75a9faaa8aed6fab6d0ca41bad5.tar.bz2
prometheus_node_collector-744e334ef9c5e75a9faaa8aed6fab6d0ca41bad5.tar.xz
prometheus_node_collector-744e334ef9c5e75a9faaa8aed6fab6d0ca41bad5.zip
Use clearer usage string for `collector.ntp.server-is-local` option
Signed-off-by: Alex Nozdriukhin <alex-nozzz@mail.ru> fixes #1662
-rw-r--r--collector/ntp.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/collector/ntp.go b/collector/ntp.go
index ea3a69e..411ba25 100644
--- a/collector/ntp.go
+++ b/collector/ntp.go
@@ -35,7 +35,7 @@ const (
35var ( 35var (
36 ntpServer = kingpin.Flag("collector.ntp.server", "NTP server to use for ntp collector").Default("127.0.0.1").String() 36 ntpServer = kingpin.Flag("collector.ntp.server", "NTP server to use for ntp collector").Default("127.0.0.1").String()
37 ntpProtocolVersion = kingpin.Flag("collector.ntp.protocol-version", "NTP protocol version").Default("4").Int() 37 ntpProtocolVersion = kingpin.Flag("collector.ntp.protocol-version", "NTP protocol version").Default("4").Int()
38 ntpServerIsLocal = kingpin.Flag("collector.ntp.server-is-local", "Certify that collector.ntp.server address is the same local host as this collector.").Default("false").Bool() 38 ntpServerIsLocal = kingpin.Flag("collector.ntp.server-is-local", "Certify that collector.ntp.server address is not a public ntp server").Default("false").Bool()
39 ntpIPTTL = kingpin.Flag("collector.ntp.ip-ttl", "IP TTL to use while sending NTP query").Default("1").Int() 39 ntpIPTTL = kingpin.Flag("collector.ntp.ip-ttl", "IP TTL to use while sending NTP query").Default("1").Int()
40 // 3.46608s ~ 1.5s + PHI * (1 << maxPoll), where 1.5s is MAXDIST from ntp.org, it is 1.0 in RFC5905 40 // 3.46608s ~ 1.5s + PHI * (1 << maxPoll), where 1.5s is MAXDIST from ntp.org, it is 1.0 in RFC5905
41 // max-distance option is used as-is without phi*(1<<poll) 41 // max-distance option is used as-is without phi*(1<<poll)