Merge pull request #209 from bluecmd/patch-1

Fix NTP server command line reference
pull/215/head
Brian Brazil 9 years ago
commit bce2e0c513

@ -42,7 +42,7 @@ func init() {
// the offset between ntp and the current system time.
func NewNtpCollector() (Collector, error) {
if *ntpServer == "" {
return nil, fmt.Errorf("no NTP server specifies, see --ntpServer")
return nil, fmt.Errorf("no NTP server specified, see -collector.ntp.server")
}
if *ntpProtocolVersion < 2 || *ntpProtocolVersion > 4 {
return nil, fmt.Errorf("invalid NTP protocol version %d; must be 2, 3, or 4", *ntpProtocolVersion)

Loading…
Cancel
Save