Struct cadence::BufferedUdpMetricSink
source · [−]pub struct BufferedUdpMetricSink { /* private fields */ }
Expand description
Implementation of a MetricSink
that buffers metrics before
sending them to a UDP socket.
Metrics are line buffered, meaning that a trailing “\n” is added after each metric written to this sink. When the buffer is sufficiently full and a write is attempted, the contents of the buffer are flushed to a UDP socket and then the metric is written to the buffer. The buffer is also flushed when this sink is destroyed.
The default size of the buffer is 512 bytes. This is the “safest”
size for a UDP packet according to the Etsy Statsd docs. The
buffer size can be customized using the with_capacity
method
to create the sink if desired.
If a metric larger than the buffer is emitted, it will be written directly to the underlying UDP socket, bypassing the buffer.
Note that since metrics are buffered until a certain size is reached, it’s
possible that they may sit in the buffer for a while for applications
that do not emit metrics frequently or at a high volume. For these low-
throughput use cases, it may make more sense to use the UdpMetricSink
since it sends metrics immediately with no buffering.
Implementations
sourceimpl BufferedUdpMetricSink
impl BufferedUdpMetricSink
sourcepub fn from<A>(
sink_addr: A,
socket: UdpSocket
) -> MetricResult<BufferedUdpMetricSink> where
A: ToSocketAddrs,
pub fn from<A>(
sink_addr: A,
socket: UdpSocket
) -> MetricResult<BufferedUdpMetricSink> where
A: ToSocketAddrs,
Construct a new BufferedUdpMetricSink
instance with a default
buffer size of 512 bytes.
The address should be the address of the remote metric server to emit metrics to over UDP. The socket should already be bound to a local address with any desired configuration applied (blocking vs non-blocking, timeouts, etc.).
Writes to this sink are automatically suffixed with a Unix newline (‘\n’) by the sink and stored in a 512 byte buffer until the buffer is full or this sink is destroyed, at which point the buffer will be flushed.
Example
use std::net::UdpSocket;
use cadence::{BufferedUdpMetricSink, DEFAULT_PORT};
let socket = UdpSocket::bind("0.0.0.0:0").unwrap();
let host = ("metrics.example.com", DEFAULT_PORT);
let sink = BufferedUdpMetricSink::from(host, socket);
Failures
This method may fail if:
- It is unable to resolve the hostname of the metric server.
- The host address is otherwise unable to be parsed
sourcepub fn with_capacity<A>(
sink_addr: A,
socket: UdpSocket,
cap: usize
) -> MetricResult<BufferedUdpMetricSink> where
A: ToSocketAddrs,
pub fn with_capacity<A>(
sink_addr: A,
socket: UdpSocket,
cap: usize
) -> MetricResult<BufferedUdpMetricSink> where
A: ToSocketAddrs,
Construct a new BufferedUdpMetricSink
instance with a custom
buffer size.
The address should be the address of the remote metric server to emit metrics to over UDP. The socket should already be bound to a local address with any desired configuration applied (blocking vs non-blocking, timeouts, etc.).
Writes to this sink are automatically suffixed with a Unix newline (‘\n’) by the sink and stored in a buffer until the buffer is full or this sink is destroyed, at which point the buffer will be flushed.
For guidance on sizing your buffer see the Statsd docs.
Example
use std::net::UdpSocket;
use cadence::{BufferedUdpMetricSink, DEFAULT_PORT};
let socket = UdpSocket::bind("0.0.0.0:0").unwrap();
let host = ("metrics.example.com", DEFAULT_PORT);
let sink = BufferedUdpMetricSink::with_capacity(host, socket, 1432);
Failures
This method may fail if:
- It is unable to resolve the hostname of the metric server.
- The host address is otherwise unable to be parsed
Trait Implementations
sourceimpl Debug for BufferedUdpMetricSink
impl Debug for BufferedUdpMetricSink
sourceimpl MetricSink for BufferedUdpMetricSink
impl MetricSink for BufferedUdpMetricSink
Auto Trait Implementations
impl RefUnwindSafe for BufferedUdpMetricSink
impl Send for BufferedUdpMetricSink
impl Sync for BufferedUdpMetricSink
impl Unpin for BufferedUdpMetricSink
impl UnwindSafe for BufferedUdpMetricSink
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more