Merge pull request #2603 from prometheus/superq/deprecate_ntp
Deprecate ntp collector
This commit is contained in:
commit
2f20a9bb3c
|
@ -165,7 +165,6 @@ logind | Exposes session counts from [logind](http://www.freedesktop.org/wiki/So
|
||||||
meminfo\_numa | Exposes memory statistics from `/proc/meminfo_numa`. | Linux
|
meminfo\_numa | Exposes memory statistics from `/proc/meminfo_numa`. | Linux
|
||||||
mountstats | Exposes filesystem statistics from `/proc/self/mountstats`. Exposes detailed NFS client statistics. | Linux
|
mountstats | Exposes filesystem statistics from `/proc/self/mountstats`. Exposes detailed NFS client statistics. | Linux
|
||||||
network_route | Exposes the routing table as metrics | Linux
|
network_route | Exposes the routing table as metrics | Linux
|
||||||
ntp | Exposes local NTP daemon health to check [time](./docs/TIME.md) | _any_
|
|
||||||
perf | Exposes perf based metrics (Warning: Metrics are dependent on kernel configuration and settings). | Linux
|
perf | Exposes perf based metrics (Warning: Metrics are dependent on kernel configuration and settings). | Linux
|
||||||
processes | Exposes aggregate process statistics from `/proc`. | Linux
|
processes | Exposes aggregate process statistics from `/proc`. | Linux
|
||||||
qdisc | Exposes [queuing discipline](https://en.wikipedia.org/wiki/Network_scheduler#Linux_kernel) statistics | Linux
|
qdisc | Exposes [queuing discipline](https://en.wikipedia.org/wiki/Network_scheduler#Linux_kernel) statistics | Linux
|
||||||
|
@ -178,6 +177,14 @@ tcpstat | Exposes TCP connection status information from `/proc/net/tcp` and `/p
|
||||||
wifi | Exposes WiFi device and station statistics. | Linux
|
wifi | Exposes WiFi device and station statistics. | Linux
|
||||||
zoneinfo | Exposes NUMA memory zone metrics. | Linux
|
zoneinfo | Exposes NUMA memory zone metrics. | Linux
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
|
||||||
|
These colectors are deprecated and will be removed in the next major release.
|
||||||
|
|
||||||
|
Name | Description | OS
|
||||||
|
---------|-------------|----
|
||||||
|
ntp | Exposes local NTP daemon health to check [time](./docs/TIME.md) | _any_
|
||||||
|
|
||||||
### Perf Collector
|
### Perf Collector
|
||||||
|
|
||||||
The `perf` collector may not work out of the box on some Linux systems due to kernel
|
The `perf` collector may not work out of the box on some Linux systems due to kernel
|
||||||
|
|
|
@ -25,6 +25,7 @@ import (
|
||||||
"github.com/alecthomas/kingpin/v2"
|
"github.com/alecthomas/kingpin/v2"
|
||||||
"github.com/beevik/ntp"
|
"github.com/beevik/ntp"
|
||||||
"github.com/go-kit/log"
|
"github.com/go-kit/log"
|
||||||
|
"github.com/go-kit/log/level"
|
||||||
"github.com/prometheus/client_golang/prometheus"
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -79,6 +80,7 @@ func NewNtpCollector(logger log.Logger) (Collector, error) {
|
||||||
return nil, fmt.Errorf("invalid NTP port number %d; must be between 1 and 65535 inclusive", *ntpServerPort)
|
return nil, fmt.Errorf("invalid NTP port number %d; must be between 1 and 65535 inclusive", *ntpServerPort)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
level.Warn(logger).Log("msg", "This collector is deprecated and will be removed in the next major version release.")
|
||||||
return &ntpCollector{
|
return &ntpCollector{
|
||||||
stratum: typedDesc{prometheus.NewDesc(
|
stratum: typedDesc{prometheus.NewDesc(
|
||||||
prometheus.BuildFQName(namespace, ntpSubsystem, "stratum"),
|
prometheus.BuildFQName(namespace, ntpSubsystem, "stratum"),
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## `ntp` collector
|
## `ntp` collector
|
||||||
|
|
||||||
|
NOTE: This collector is deprecated and will be removed in the next major version release.
|
||||||
|
|
||||||
This collector is intended for usage with local NTP daemons including [ntp.org](http://ntp.org/), [chrony](https://chrony.tuxfamily.org/comparison.html), and [OpenNTPD](http://www.openntpd.org/).
|
This collector is intended for usage with local NTP daemons including [ntp.org](http://ntp.org/), [chrony](https://chrony.tuxfamily.org/comparison.html), and [OpenNTPD](http://www.openntpd.org/).
|
||||||
|
|
||||||
Note, some chrony packages have `local stratum 10` configuration value making chrony a valid server when it is unsynchronised. This configuration makes one of the heuristics that derive `node_ntp_sanity` unreliable.
|
Note, some chrony packages have `local stratum 10` configuration value making chrony a valid server when it is unsynchronised. This configuration makes one of the heuristics that derive `node_ntp_sanity` unreliable.
|
||||||
|
|
Loading…
Reference in New Issue