[][src]Struct cadence::UnixMetricSink

pub struct UnixMetricSink { /* fields omitted */ }

Implementation of a MetricSink that emits metrics over a Unix socket.

This is the most basic version of MetricSink that sends metrics over a Unix socket. It accepts a Unix socket instance over which to write metrics and the path of the socket for the Statsd server to send metrics to.

Each metric is sent to the Statsd server when the .emit() method is called, in the thread of the caller.

Note that unlike the UDP sinks, if there is no receiving socket at the path specified or nothing listening at the path, an error will be returned when metrics are emitted.

Implementations

impl UnixMetricSink[src]

pub fn from<P>(path: P, socket: UnixDatagram) -> UnixMetricSink where
    P: AsRef<Path>, 
[src]

Construct a new UnixMetricSink instance.

The socket does not need to be bound (i.e. UnixDatagram::unbound() is fine) but should have any desired configuration already applied (blocking vs non-blocking, timeouts, etc.).

Example

use std::os::unix::net::UnixDatagram;
use cadence::UnixMetricSink;

let socket = UnixDatagram::unbound().unwrap();
let sink = UnixMetricSink::from("/run/statsd.sock", socket);

To send metrics over a non-blocking socket, simply put the socket in non-blocking mode before creating the Unix metric sink.

Non-blocking Example

use std::os::unix::net::UnixDatagram;
use cadence::UnixMetricSink;

let socket = UnixDatagram::unbound().unwrap();
socket.set_nonblocking(true).unwrap();
let sink = UnixMetricSink::from("/run/statsd.sock", socket);

Trait Implementations

impl Debug for UnixMetricSink[src]

impl MetricSink for UnixMetricSink[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.