1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
// Cadence - An extensible Statsd client for Rust! // // Copyright 2015-2017 TSH Labs // // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your // option. This file may not be copied, modified, or distributed // except according to those terms. use std::net::{ToSocketAddrs, UdpSocket}; use ::sinks::{MetricSink, UdpMetricSink}; use ::types::{MetricResult, Counter, Timer, Gauge, Meter, Histogram, Metric}; /// Trait for incrementing and decrementing counters. /// /// Counters are simple values incremented or decremented by a client. The /// rates at which these events occur or average values will be determined /// by the server receiving them. Examples of counter uses include number /// of logins to a system or requests received. /// /// See the [Statsd spec](https://github.com/b/statsd_spec) for more /// information. pub trait Counted { /// Increment the counter by `1` fn incr(&self, key: &str) -> MetricResult<Counter>; /// Decrement the counter by `1` fn decr(&self, key: &str) -> MetricResult<Counter>; /// Increment or decrement the counter by the given amount fn count(&self, key: &str, count: i64) -> MetricResult<Counter>; } /// Trait for recording timings in milliseconds. /// /// Timings are a positive number of milliseconds between a start and end /// time. Examples include time taken to render a web page or time taken /// for a database call to return. /// /// See the [Statsd spec](https://github.com/b/statsd_spec) for more /// information. pub trait Timed { /// Record a timing in milliseconds with the given key fn time(&self, key: &str, time: u64) -> MetricResult<Timer>; } /// Trait for recording gauge values. /// /// Gauge values are an instantaneous measurement of a value determined /// by the client. They do not change unless changed by the client. Examples /// include things like load average or how many connections are active. /// /// See the [Statsd spec](https://github.com/b/statsd_spec) for more /// information. pub trait Gauged { /// Record a gauge value with the given key fn gauge(&self, key: &str, value: u64) -> MetricResult<Gauge>; } /// Trait for recording meter values. /// /// Meter values measure the rate at which events occur. These rates are /// determined by the server, the client simply indicates when they happen. /// Meters can be thought of as increment-only counters. Examples include /// things like number of requests handled or number of times something is /// flushed to disk. /// /// See the [Statsd spec](https://github.com/b/statsd_spec) for more /// information. pub trait Metered { /// Record a single metered event with the given key fn mark(&self, key: &str) -> MetricResult<Meter>; /// Record a meter value with the given key fn meter(&self, key: &str, value: u64) -> MetricResult<Meter>; } /// Trait for recording histogram values. /// /// Histogram values are positive values that can represent anything, whose /// statistical distribution is calculated by the server. The values can be /// timings, amount of some resource consumed, size of HTTP responses in /// some application, etc. Histograms can be thought of as a more general /// form of timers. They are an extension to the Statsd protocol so you /// should check if your server supports them before using them. /// /// See the [Statsd spec](https://github.com/b/statsd_spec) for more /// information. pub trait Histogrammed { /// Record a single histogram value with the given key fn histogram(&self, key: &str, value: u64) -> MetricResult<Histogram>; } /// Trait that encompasses all other traits for sending metrics. /// /// If you wish to use `StatsdClient` with a generic type or place a /// `StatsdClient` instance behind a pointer (such as a `Box`) this will allow /// you to reference all the implemented methods for recording metrics, while /// using a single trait. An example of this is shown below. /// /// ``` /// use cadence::{MetricClient, StatsdClient, NopMetricSink}; /// /// let client: Box<MetricClient> = Box::new(StatsdClient::from_sink( /// "prefix", NopMetricSink)); /// /// client.count("some.counter", 1).unwrap(); /// client.time("some.timer", 42).unwrap(); /// client.gauge("some.gauge", 8).unwrap(); /// client.meter("some.meter", 13).unwrap(); /// client.histogram("some.histogram", 4).unwrap(); /// ``` pub trait MetricClient: Counted + Timed + Gauged + Metered + Histogrammed {} /// Client for Statsd that implements various traits to record metrics. /// /// The client is the main entry point for users of this library. It supports /// several traits for recording metrics of different types. /// /// * `Counted` for emitting counters. /// * `Timed` for emitting timings. /// * `Gauged` for emitting gauge values. /// * `Metered` for emitting meter values. /// * `Histogrammed` for emitting histogram values. /// * `MetricClient` for a combination of all of the above. /// /// For more information about the uses for each type of metric, see the /// documentation for each mentioned trait. /// /// The client uses some implementation of a `MetricSink` to emit the metrics. /// /// In simple use cases when performance isn't critical, the `UdpMetricSink` /// is likely the best choice since it is the simplest to use and understand. /// /// When performance is more important, users will want to use the /// `BufferedUdpMetricSink` in combination with the `AsyncMetricSink` for /// maximum isolation between the sending metrics and your application as well /// as minimum overhead when sending metrics. #[derive(Debug, Clone)] pub struct StatsdClient<T: MetricSink> { prefix: String, sink: T, } impl<T: MetricSink> StatsdClient<T> { /// Create a new client instance that will use the given prefix for /// all metrics emitted to the given `MetricSink` implementation. /// /// # No-op Example /// /// ``` /// use cadence::{StatsdClient, NopMetricSink}; /// /// let prefix = "my.stats"; /// let client = StatsdClient::from_sink(prefix, NopMetricSink); /// ``` /// /// # UDP Socket Example /// /// ``` /// use std::net::UdpSocket; /// use cadence::{StatsdClient, UdpMetricSink, DEFAULT_PORT}; /// /// let prefix = "my.stats"; /// let host = ("127.0.0.1", DEFAULT_PORT); /// /// let socket = UdpSocket::bind("0.0.0.0:0").unwrap(); /// socket.set_nonblocking(true).unwrap(); /// /// let sink = UdpMetricSink::from(host, socket).unwrap(); /// let client = StatsdClient::from_sink(prefix, sink); /// ``` /// /// # Buffered UDP Socket Example /// /// ``` /// use std::net::UdpSocket; /// use cadence::{StatsdClient, BufferedUdpMetricSink, DEFAULT_PORT}; /// /// let prefix = "my.stats"; /// let host = ("127.0.0.1", DEFAULT_PORT); /// /// let socket = UdpSocket::bind("0.0.0.0:0").unwrap(); /// /// let sink = BufferedUdpMetricSink::from(host, socket).unwrap(); /// let client = StatsdClient::from_sink(prefix, sink); /// ``` pub fn from_sink(prefix: &str, sink: T) -> StatsdClient<T> { StatsdClient { prefix: trim_key(prefix).to_string(), sink: sink, } } /// Create a new client instance that will use the given prefix to send /// metrics to the given host over UDP using an appropriate sink. /// /// The created UDP socket will be put into non-blocking mode. /// /// **Note** that you must include a type parameter when you call this /// method to help the compiler determine the type of `T` (the sink). /// /// # Example /// /// ```no_run /// use cadence::{StatsdClient, UdpMetricSink}; /// /// let prefix = "my.stats"; /// let host = ("metrics.example.com", 8125); /// /// // Note that we include a type parameter for the method call /// let client = StatsdClient::<UdpMetricSink>::from_udp_host(prefix, host); /// ``` /// /// # Failures /// /// This method may fail if: /// /// * It is unable to create a local UDP socket. /// * It is unable to put the UDP socket into non-blocking mode. /// * It is unable to resolve the hostname of the metric server. /// * The host address is otherwise unable to be parsed. pub fn from_udp_host<A>(prefix: &str, host: A) -> MetricResult<StatsdClient<UdpMetricSink>> where A: ToSocketAddrs { let socket = UdpSocket::bind("0.0.0.0:0")?; socket.set_nonblocking(true)?; let sink = UdpMetricSink::from(host, socket)?; Ok(StatsdClient::from_sink(prefix, sink)) } // Convert a metric to its Statsd string representation and then send // it as UTF-8 bytes to the metric sink. Convert any I/O errors from the // sink to MetricResults with the metric itself as a payload for success // responses. fn send_metric<M: Metric>(&self, metric: &M) -> MetricResult<()> { let metric_string = metric.as_metric_str(); self.sink.emit(metric_string)?; Ok(()) } } impl<T: MetricSink> Counted for StatsdClient<T> { fn incr(&self, key: &str) -> MetricResult<Counter> { self.count(key, 1) } fn decr(&self, key: &str) -> MetricResult<Counter> { self.count(key, -1) } fn count(&self, key: &str, count: i64) -> MetricResult<Counter> { let counter = Counter::new(&self.prefix, key, count); self.send_metric(&counter)?; Ok(counter) } } impl<T: MetricSink> Timed for StatsdClient<T> { fn time(&self, key: &str, time: u64) -> MetricResult<Timer> { let timer = Timer::new(&self.prefix, key, time); self.send_metric(&timer)?; Ok(timer) } } impl<T: MetricSink> Gauged for StatsdClient<T> { fn gauge(&self, key: &str, value: u64) -> MetricResult<Gauge> { let gauge = Gauge::new(&self.prefix, key, value); self.send_metric(&gauge)?; Ok(gauge) } } impl<T: MetricSink> Metered for StatsdClient<T> { fn mark(&self, key: &str) -> MetricResult<Meter> { self.meter(key, 1) } fn meter(&self, key: &str, value: u64) -> MetricResult<Meter> { let meter = Meter::new(&self.prefix, key, value); self.send_metric(&meter)?; Ok(meter) } } impl<T: MetricSink> Histogrammed for StatsdClient<T> { fn histogram(&self, key: &str, value: u64) -> MetricResult<Histogram> { let histo = Histogram::new(&self.prefix, key, value); self.send_metric(&histo)?; Ok(histo) } } impl<T: MetricSink> MetricClient for StatsdClient<T> {} fn trim_key(val: &str) -> &str { if val.ends_with('.') { val.trim_right_matches('.') } else { val } } #[cfg(test)] mod tests { use super::{trim_key, Counted, Timed, Gauged, Metered, Histogrammed, MetricClient, StatsdClient}; use ::sinks::NopMetricSink; #[test] fn test_trim_key_with_trailing_dot() { assert_eq!("some.prefix", trim_key("some.prefix.")); } #[test] fn test_trim_key_no_trailing_dot() { assert_eq!("some.prefix", trim_key("some.prefix")); } // The following tests really just ensure that we've actually // implemented all the traits we're supposed to correctly. If // we hadn't, this wouldn't compile. #[test] fn test_statsd_client_as_counted() { let client: Box<Counted> = Box::new(StatsdClient::from_sink( "prefix", NopMetricSink)); client.count("some.counter", 5).unwrap(); } #[test] fn test_statsd_client_as_timed() { let client: Box<Timed> = Box::new(StatsdClient::from_sink( "prefix", NopMetricSink)); client.time("some.timer", 20).unwrap(); } #[test] fn test_statsd_client_as_gauged() { let client: Box<Gauged> = Box::new(StatsdClient::from_sink( "prefix", NopMetricSink)); client.gauge("some.gauge", 32).unwrap(); } #[test] fn test_statsd_client_as_metered() { let client: Box<Metered> = Box::new(StatsdClient::from_sink( "prefix", NopMetricSink)); client.meter("some.meter", 9).unwrap(); } #[test] fn test_statsd_client_as_histogrammed() { let client: Box<Histogrammed> = Box::new(StatsdClient::from_sink( "prefix", NopMetricSink)); client.histogram("some.histogram", 4).unwrap(); } #[test] fn test_statsd_client_as_metric_client() { let client: Box<MetricClient> = Box::new(StatsdClient::from_sink( "prefix", NopMetricSink)); client.count("some.counter", 3).unwrap(); client.time("some.timer", 198).unwrap(); client.gauge("some.gauge", 4).unwrap(); client.meter("some.meter", 29).unwrap(); client.histogram("some.histogram", 32).unwrap(); } }