我正在使用 telegraf inputs.tail 来解析我的应用程序日志文件。输入数据为 json 格式,如下所示:
{
"key1":"value1",
"key2":"value2",
"key3":"value3a^value3b"
}
问题 - 如何解析 key3 的值,以便我可以将 value3a 和 value3b 写入 influxDB 中的两个单独的标签/列?
telegraf.conf 片段:
[[inputs.tail]]
files = ["/path/to/log/server.log"]
data_format = "json"
tag_keys = [
"key1",
"key2",
"key3"
]
2天来一直在为这个问题头疼。任何帮助将非常感激!提前致谢。