From a1c201d8211ba07fe76651570bc2fadcff705f6c Mon Sep 17 00:00:00 2001 From: Marcin Lulek Date: Tue, 5 Nov 2019 17:55:23 +0100 Subject: [PATCH] Fix format for dogstatsd tags Only key:value format for dogstatsd is accepted by latest version of statsd exporter. I've tried both official client and bash scripts to send the data: echo "newpure.test:1|c|@0.5|#country:china" | nc -w 1 -u 127.0.0.1 9125` - will work echo "newpure.test:1|c|@0.5|#country=china" | nc -w 1 -u 127.0.0.1 9125 - will not work Signed-off-by: Marcin Lulek --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5714bd3..6dde289 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ For DogStatsD-style tags, they're appended as a `|#` delimited section at the end of the metric, as so: ``` -metric.name:0|c|#tagName=val,tag2Name=val2 +metric.name:0|c|#tagName:val,tag2Name:val2 ``` See [Tags](https://docs.datadoghq.com/developers/dogstatsd/data_types/#tagging)