我正在尝试配置 CentOS 7 VM 以使用 collectd 将一些性能指标发送到另一个运行 Graphite 的 CentOS 7 VM,以便可以以图形方式显示性能指标。下面是 collectd.conf 文件中 collectd write_graphite 的配置参数:
<Plugin write_graphite>
<Node "commandNode1">
Host "localhost"
Port "2003"
Protocol "tcp"
LogSendErrors true
Prefix "collectd."
# Postfix "collectd"
StoreRates true
AlwaysAppendDS false
EscapeCharacter "_"
</Node>
</Plugin>
无论如何,我可以仅使用 IP 地址指定主机参数吗?还是在某个地方我必须将 IP 地址与 collectd.conf 文件中的给定主机名相关联?作为参考,我主要使用此链接到达我现在的位置:https ://www.digitalocean.com/community/tutorials/how-to-keep-effective-historical-logs-with-graphite-carbon-and-collectd -on-centos-7。谢谢!