我正在尝试对小型集群进行全局资源监控。选择的堆栈: - 在节点上收集数据以进行数据收集 - 使用官方docker容器将Influxdb作为后端 - grafana再次使用官方容器作为前端 容器在中央服务器上启动。 Grafana能够连接到Influxdb源码,我更新了collectd代理(collectd.conf中的网络插件)和Influxdb(使用collectd插件的Influxdb.conf),使他们能够互相交流。
但是没有数据显示......没有太多日志要检查,但是肯定潮流数据文件是空的,查询时什么都没有。
任何人都有这样的背景吗?知道在哪里挖掘?
收集conf提取:
# /etc/collectd/collectd.conf
<Plugin network>
Server "<public_IP_of_the_docker_host>" "25826"
</Plugin>
Influxdb conf:
[input_plugins.collectd]
enabled = true
address = "public_IP_of_the_docker_host"
port = 25826
database = "collectd"
typesdb = "/usr/share/collectd/types.db"