如何在节点导出器中设置--collector.textfile.directory
How to set --collector.textfile.directory in node exporter
我正在关注有关使用文本文件收集器导出指标的 this 文章。
我创建了一个文本文件 /var/lib/node_exporter/textfile_collector/directory_size.prom
,其中包含目录大小的指标,但它没有将其推送到 prometheus。
我读到标志 --collector.textfile.directory
负责要读取的目录的路径。如何查看采集器的目录是什么,如何修改?
node_exporter 您必须添加的服务文件
--collector.textfile.directory=/var/lib/node_exporter/textfile_collector
示例:
[Unit]
Description=Node Exporter
After=network.target
[Service]
Type=simple
ExecStart=/path/binary/node_exporter --collector.textfile.directory=/path/to/read/directory
[Install]
WantedBy=multi-user.target
我正在关注有关使用文本文件收集器导出指标的 this 文章。
我创建了一个文本文件 /var/lib/node_exporter/textfile_collector/directory_size.prom
,其中包含目录大小的指标,但它没有将其推送到 prometheus。
我读到标志 --collector.textfile.directory
负责要读取的目录的路径。如何查看采集器的目录是什么,如何修改?
node_exporter 您必须添加的服务文件
--collector.textfile.directory=/var/lib/node_exporter/textfile_collector
示例:
[Unit]
Description=Node Exporter
After=network.target
[Service]
Type=simple
ExecStart=/path/binary/node_exporter --collector.textfile.directory=/path/to/read/directory
[Install]
WantedBy=multi-user.target