Fluentd 不在 influxdbv2 上存储数据
Fluentd does'nt store data on influxdbv2
我正在尝试使用 fluentd (td-agent) 在 influxdbv2 上存储系统日志。 td-agent的配置为:
<match system.**>
@type influxdb2
url http://influxdb:8086
token my_token
bucket bucket_name
org org_ID
use_ssl false
</match>
<source>
@type syslog
port 42185
tag system
</source>
我在 rsyslog.conf 文件中添加了 *.* @127.0.0.1:42185
。所有数据似乎都正确到达,但在 influxDB 中什么也没有。有人知道可能是什么问题吗?
我解决了这个问题,将字段 org
的值从 org_ID
更改为 org_name
我正在尝试使用 fluentd (td-agent) 在 influxdbv2 上存储系统日志。 td-agent的配置为:
<match system.**>
@type influxdb2
url http://influxdb:8086
token my_token
bucket bucket_name
org org_ID
use_ssl false
</match>
<source>
@type syslog
port 42185
tag system
</source>
我在 rsyslog.conf 文件中添加了 *.* @127.0.0.1:42185
。所有数据似乎都正确到达,但在 influxDB 中什么也没有。有人知道可能是什么问题吗?
我解决了这个问题,将字段 org
的值从 org_ID
更改为 org_name