From 0f12bbf71e538c83e7a56c46d353fe37c82d6af4 Mon Sep 17 00:00:00 2001 From: Frank Villaro-Dixon Date: Sat, 25 May 2024 01:10:01 +0200 Subject: [PATCH] opentsdb: support integer tag values Signed-off-by: Frank Villaro-Dixon --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 198b231..02c9a19 100644 --- a/src/main.rs +++ b/src/main.rs @@ -33,7 +33,7 @@ struct OtsdbData { metric: String, value: OtsdbValue, timestamp: i64, - tags: HashMap, + tags: HashMap, } const CONFIG_FILE: &str = "config.yaml";