2015-09-26 08:36:40 -07:00
|
|
|
// Copyright 2015 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2014-07-28 03:36:28 -07:00
|
|
|
// +build !nontp
|
|
|
|
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/beevik/ntp"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2015-10-30 13:20:06 -07:00
|
|
|
"github.com/prometheus/common/log"
|
2014-07-28 03:36:28 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2015-10-26 06:15:53 -07:00
|
|
|
ntpServer = flag.String("collector.ntp.server", "", "NTP server to use for ntp collector.")
|
|
|
|
ntpProtocolVersion = flag.Int("collector.ntp.protocol-version", 4, "NTP protocol version")
|
2014-07-28 03:36:28 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
type ntpCollector struct {
|
2014-11-24 18:00:17 -08:00
|
|
|
drift prometheus.Gauge
|
2014-07-28 03:36:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Factories["ntp"] = NewNtpCollector
|
|
|
|
}
|
|
|
|
|
2015-05-20 11:04:49 -07:00
|
|
|
// Takes a prometheus registry and returns a new Collector exposing
|
2014-07-28 03:36:28 -07:00
|
|
|
// the offset between ntp and the current system time.
|
2015-05-20 11:04:49 -07:00
|
|
|
func NewNtpCollector() (Collector, error) {
|
2014-07-28 03:36:28 -07:00
|
|
|
if *ntpServer == "" {
|
2016-02-20 12:03:17 -08:00
|
|
|
return nil, fmt.Errorf("no NTP server specified, see -collector.ntp.server")
|
2014-07-28 03:36:28 -07:00
|
|
|
}
|
2015-11-10 01:07:30 -08:00
|
|
|
if *ntpProtocolVersion < 2 || *ntpProtocolVersion > 4 {
|
2015-11-13 07:09:11 -08:00
|
|
|
return nil, fmt.Errorf("invalid NTP protocol version %d; must be 2, 3, or 4", *ntpProtocolVersion)
|
2015-11-10 01:07:30 -08:00
|
|
|
}
|
2014-07-28 03:36:28 -07:00
|
|
|
|
2014-11-24 18:00:17 -08:00
|
|
|
return &ntpCollector{
|
|
|
|
drift: prometheus.NewGauge(prometheus.GaugeOpts{
|
|
|
|
Namespace: Namespace,
|
|
|
|
Name: "ntp_drift_seconds",
|
|
|
|
Help: "Time between system time and ntp time.",
|
|
|
|
}),
|
|
|
|
}, nil
|
2014-07-28 03:36:28 -07:00
|
|
|
}
|
|
|
|
|
2014-10-29 07:16:43 -07:00
|
|
|
func (c *ntpCollector) Update(ch chan<- prometheus.Metric) (err error) {
|
2016-06-01 00:56:20 -07:00
|
|
|
resp, err := ntp.Query(*ntpServer, *ntpProtocolVersion)
|
2014-07-28 03:36:28 -07:00
|
|
|
if err != nil {
|
2015-11-10 01:07:30 -08:00
|
|
|
return fmt.Errorf("couldn't get NTP drift: %s", err)
|
2014-07-28 03:36:28 -07:00
|
|
|
}
|
2016-06-01 00:56:20 -07:00
|
|
|
driftSeconds := resp.ClockOffset.Seconds()
|
|
|
|
log.Debugf("Set ntp_drift_seconds: %f", driftSeconds)
|
|
|
|
c.drift.Set(driftSeconds)
|
2014-11-24 18:00:17 -08:00
|
|
|
c.drift.Collect(ch)
|
2014-10-29 07:16:43 -07:00
|
|
|
return err
|
2014-07-28 03:36:28 -07:00
|
|
|
}
|