文件名称:rust-statsd:在Rust中实现的Statsd客户端
文件大小:7KB
文件格式:ZIP
更新时间:2024-05-02 19:28:52
rust metrics statsd-client statsd Rust
生锈状态 rusts中statsd的StatsD客户端实现。 使用客户端库 将statsd软件包作为依赖项添加到Cargo.toml文件中: [ dependencies ] statsd = " ^0.13.1 " 您需要rustc> = 1.8.0才能使statsd工作。 然后,您可以获取客户端实例并开始跟踪指标: // Load the crate extern crate statsd; // Import the client object. use statsd :: Client; // Get a client with the prefix of `myapp`. The host should be the // IP:port of your statsd daemon. let client = Client :: new ( "127.0.0.1:812
【文件预览】:
rust-statsd-master
----.travis.yml(48B)
----src()
--------client.rs(18KB)
--------lib.rs(432B)
----Cargo.toml(344B)
----examples()
--------client.rs(476B)
----.gitignore(19B)
----README.md(2KB)
----LICENSE.txt(1KB)