// Cadence - An extensible Statsd client for Rust! // // To the extent possible under law, the author(s) have dedicated all copyright and // related and neighboring rights to this file to the public domain worldwide. // This software is distributed without any warranty. // // You should have received a copy of the CC0 Public Domain Dedication along with this // software. If not, see . // This example shows how you might configure the Cadence client for maximum // isolation and performance. The buffered UDP sink accumulates multiple metrics // in a buffer before writing to the network. The queuing sink runs the wrapped // sink in a separate thread ensuring it doesn't interfere with your application. use cadence::prelude::*; use cadence::{BufferedUdpMetricSink, QueuingMetricSink, StatsdClient, DEFAULT_PORT}; use std::net::UdpSocket; use std::time::Duration; fn main() { let sock = UdpSocket::bind("0.0.0.0:0").unwrap(); let buffered = BufferedUdpMetricSink::from(("localhost", DEFAULT_PORT), sock).unwrap(); let queued = QueuingMetricSink::from(buffered); let client = StatsdClient::from_sink("example.prefix", queued); client.count("example.counter", 1).unwrap(); client.gauge("example.gauge", 5).unwrap(); client.gauge("example.gauge", 5.0).unwrap(); client.time("example.timer", 32).unwrap(); client.time("example.timer", Duration::from_millis(32)).unwrap(); client.histogram("example.histogram", 22).unwrap(); client.histogram("example.histogram", Duration::from_nanos(22)).unwrap(); client.histogram("example.histogram", 22.0).unwrap(); client.distribution("example.distribution", 33).unwrap(); client.distribution("example.distribution", 33.0).unwrap(); client.meter("example.meter", 8).unwrap(); client.set("example.set", 44).unwrap(); }