From 75ffbd559b2e8aa97284a36849b198e04bfb98fa Mon Sep 17 00:00:00 2001 From: Marcel Pfennig <82059270+MP-Tool@users.noreply.github.com> Date: Fri, 22 Aug 2025 00:01:10 +0200 Subject: [PATCH] Fix: Correct environment variable name for container stats polling rate (#752) * docs(config): Update environment variable name and default value for container stats polling rate * fix(config): Update default value for container stats polling rate to 30 seconds --- config/periphery.config.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/periphery.config.toml b/config/periphery.config.toml index e53a8b824..3145c014e 100644 --- a/config/periphery.config.toml +++ b/config/periphery.config.toml @@ -75,10 +75,10 @@ disable_container_exec = false stats_polling_rate = "5-sec" ## How often Periphery polls the host for container stats, -## Env: PERIPHERY_STATS_POLLING_RATE +## Env: PERIPHERY_CONTAINER_STATS_POLLING_RATE ## Options: https://docs.rs/komodo_client/latest/komodo_client/entities/enum.Timelength.html -## Default: 5-sec -container_stats_polling_rate = "1-min" +## Default: 30-sec +container_stats_polling_rate = "30-sec" ## Whether stack actions should use `docker-compose ...` ## instead of `docker compose ...`.