opentsdb: support integer tag values

Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
This commit is contained in:
Frank Villaro-Dixon 2024-05-25 01:10:01 +02:00
parent 2c55f5eb54
commit 0f12bbf71e

View file

@ -33,7 +33,7 @@ struct OtsdbData {
metric: String, metric: String,
value: OtsdbValue, value: OtsdbValue,
timestamp: i64, timestamp: i64,
tags: HashMap<String, String>, tags: HashMap<String, OtsdbValue>,
} }
const CONFIG_FILE: &str = "config.yaml"; const CONFIG_FILE: &str = "config.yaml";