* Allow user to select port on NTP server to query
Some people (me!) run NTP servers on non-privileged ports. The `github.com/beevik/ntp` package allows overriding the port, so this change just adds a flag `collector.ntp.server-port` (defaults to 123) and then passes that value through to the query via the `QueryOptions`.
Signed-off-by: Andrew Rowson <github@growse.com>
ntpServerIsLocal=kingpin.Flag("collector.ntp.server-is-local","Certify that collector.ntp.server address is not a public ntp server").Default("false").Bool()
ntpIPTTL=kingpin.Flag("collector.ntp.ip-ttl","IP TTL to use while sending NTP query").Default("1").Int()