gpt4 book ai didi

python - 配置 statsd 以使用 Graphite

转载 作者:行者123 更新时间:2023-12-04 19:17:53 26 4
gpt4 key购买 nike

因此,我想安装 statsd 并使用客户端 python-statsd 为我的系统上成功安装的 Graphite 收集一些数据。我关注了this tutorial ,但我的 Graphite 文件夹中仍然没有 statsd 子目录 only carbon subfolder

那么可能有什么问题以及如何检查 statsd 的工作? (我的 python-statsd 客户端没有显示任何错误消息)

最佳答案

statsd 必须知道碳缓存(或碳中继)的位置,这是您遵循的教程的一部分。这应该进入 statsd 的配置。

{
graphitePort: 2003,
graphiteHost: "127.0.0.1",
port: 8125
}

要测试 carbon-cache 是否有效,您可以发送一 strip 有 echo 的消息
echo "foo.bar 1 `date +%s`" | nc -q0 <graphite host> 2003

这应该给你一个目录 带有指标 酒吧 和值(value) 1 .

如果可行,那么您的碳已正确配置且可访问。下一个测试它与 statsd 对话
echo "foo.bar:2|c" | nc -q0 -u <statsd host> 8125

这应该会给你一个新值 2 foo.bar .如果这有效,那么一切都应该有效。

关于python - 配置 statsd 以使用 Graphite,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31051433/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com