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:
Oneric 2025-09-21 00:00:00 +00:00
parent 155c939070
commit b1e5dda26a

View file

@ -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()