mirror of
https://github.com/prometheus/node_exporter.git
synced 2025-03-05 21:00:12 -08:00
Merge pull request #1480 from paulfantom/time_offset
docs/node-mixin: alert on desynchronised clock
This commit is contained in:
commit
7f5a0ea5f6
|
@ -197,6 +197,44 @@
|
||||||
severity: 'warning',
|
severity: 'warning',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
alert: 'NodeClockSkewDetected',
|
||||||
|
expr: |||
|
||||||
|
(
|
||||||
|
node_timex_offset_seconds > 0.05
|
||||||
|
and
|
||||||
|
deriv(node_timex_offset_seconds[5m]) >= 0
|
||||||
|
)
|
||||||
|
or
|
||||||
|
(
|
||||||
|
node_timex_offset_seconds < 0.05
|
||||||
|
and
|
||||||
|
deriv(node_timex_offset_seconds[5m]) <= 0
|
||||||
|
)
|
||||||
|
||| % $._config,
|
||||||
|
'for': '10m',
|
||||||
|
labels: {
|
||||||
|
severity: 'warning',
|
||||||
|
},
|
||||||
|
annotations: {
|
||||||
|
summary: 'Clock skew detected.',
|
||||||
|
message: 'Clock on {{ $labels.instance }} is out of sync by more than 300s. Ensure NTP is configured correctly on this host.',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
alert: 'NodeClockNotSynchronising',
|
||||||
|
expr: |||
|
||||||
|
min_over_time(node_timex_sync_status[5m]) == 0
|
||||||
|
||| % $._config,
|
||||||
|
'for': '10m',
|
||||||
|
labels: {
|
||||||
|
severity: 'warning',
|
||||||
|
},
|
||||||
|
annotations: {
|
||||||
|
summary: 'Clock not synchronising.',
|
||||||
|
message: 'Clock on {{ $labels.instance }} is not synchronising. Ensure NTP is configured on this host.',
|
||||||
|
},
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue