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:37:01 -07:00
|
|
|
// +build !notime
|
|
|
|
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2015-10-30 13:20:06 -07:00
|
|
|
"github.com/prometheus/common/log"
|
2014-07-28 03:37:01 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
type timeCollector struct {
|
2016-12-28 06:21:31 -08:00
|
|
|
desc *prometheus.Desc
|
2014-07-28 03:37:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2017-09-28 06:06:26 -07:00
|
|
|
registerCollector("time", defaultEnabled, NewTimeCollector)
|
2014-07-28 03:37:01 -07:00
|
|
|
}
|
|
|
|
|
2017-02-28 08:44:53 -08:00
|
|
|
// NewTimeCollector returns a new Collector exposing the current system time in
|
|
|
|
// seconds since epoch.
|
2015-05-20 11:04:49 -07:00
|
|
|
func NewTimeCollector() (Collector, error) {
|
2014-11-24 18:00:17 -08:00
|
|
|
return &timeCollector{
|
2016-12-28 06:21:31 -08:00
|
|
|
desc: prometheus.NewDesc(
|
2018-02-14 08:59:08 -08:00
|
|
|
namespace+"_time_seconds",
|
2016-12-28 06:21:31 -08:00
|
|
|
"System time in seconds since epoch (1970).",
|
|
|
|
nil, nil,
|
|
|
|
),
|
2014-11-24 18:00:17 -08:00
|
|
|
}, nil
|
2014-07-28 03:37:01 -07:00
|
|
|
}
|
|
|
|
|
2016-12-28 06:21:31 -08:00
|
|
|
func (c *timeCollector) Update(ch chan<- prometheus.Metric) error {
|
2017-04-19 10:31:21 -07:00
|
|
|
now := float64(time.Now().UnixNano()) / 1e9
|
2016-12-28 06:21:31 -08:00
|
|
|
log.Debugf("Return time: %f", now)
|
|
|
|
ch <- prometheus.MustNewConstMetric(c.desc, prometheus.GaugeValue, now)
|
|
|
|
return nil
|
2014-07-28 03:37:01 -07:00
|
|
|
}
|