Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我听说我们可以为 StatsD 创建自己的后端。 是否可以??如果是,请指导我如何完成。 谢谢你。
这确实是可能的。您可以在 github.com 上的 statsd 项目中找到 3 个后端的示例。
https://github.com/etsy/statsd/tree/master/backends
至于如何做到这一点,最好的选择是阅读这 3 个示例,因为这实际上取决于您希望将数据发送到哪里,以了解如何为 statsd 编写后端。
在示例中,有两个示例通过远程套接字发送数据,一个示例将输出写入文件(控制台)。