telemetry: reduce polling frequency for periodic measurements
Instancce stats are cached only renewed every 5 minutes anyway and IO stats are cumulative over the entire runtime so no info is lost. Polling those every 10s is wasteful and the next commit will add a periodic measurement which is (comparetively) more costly to compute.
This commit is contained in:
parent
155c939070
commit
b1e5dda26a
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ def init(_arg) do
|
|||
|
||||
children =
|
||||
[
|
||||
{:telemetry_poller, measurements: periodic_measurements(), period: 10_000}
|
||||
{:telemetry_poller, measurements: periodic_measurements(), period: 60_000}
|
||||
] ++
|
||||
prometheus_children()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue