From d38a78851d61848bef8cbfe28e8c6e86850a879b Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 20 Sep 2020 14:02:06 +0000 Subject: [PATCH] latency: Give plugin a lower priority Signed-off-by: Michael Tremer --- src/collecty/plugins/latency.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/collecty/plugins/latency.py b/src/collecty/plugins/latency.py index 3704549..a4be42e 100644 --- a/src/collecty/plugins/latency.py +++ b/src/collecty/plugins/latency.py @@ -185,6 +185,9 @@ class LatencyPlugin(base.Plugin): templates = [GraphTemplateLatency] + # Because this plugin has the potential to block, we give it a slightly lower priority + priority = 10 + @property def objects(self): for hostname in PING_HOSTS: -- 2.47.3