From f8e35e676a70452df9959f7f50a526e6b4740f43 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Tue, 7 Jul 2020 17:03:46 +1000 Subject: [PATCH] graphite: statsd timer settings This brings in the settings added with I87c85f82f6d38506977bc9bf26d34f6e66746b01 to the container deployment. As noted there, this stops statsd writing null values for sparesly updated timers and counters. Change-Id: I14b5ee40fc8efddfb7bad4fad8a8ae66746131d9 --- playbooks/roles/graphite/templates/statsd.js.j2 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/playbooks/roles/graphite/templates/statsd.js.j2 b/playbooks/roles/graphite/templates/statsd.js.j2 index de9d7e85c3..8496c534d6 100644 --- a/playbooks/roles/graphite/templates/statsd.js.j2 +++ b/playbooks/roles/graphite/templates/statsd.js.j2 @@ -5,5 +5,7 @@ "flushInterval": 10000, "servers": [ { server: "./servers/udp", address: "::", port: 8125, address_ipv6: true } - ] + ], + "deleteTimers": true, + "deleteCounters": true }