[][src]Struct gelf::UdpBackend

pub struct UdpBackend<T> { /* fields omitted */ }

UdpBackend is the default and standard GELF backend

It pushes messages to a GELF host via UDP. Messages are cut into chunks of a certain chunk-size. This size is important since the chunk-size + a stable overhead of 12 bytes needs to fit the transport layer's mtu.

If the message fits into a single chunk, no chunking is applied.

Methods

impl<T: ToSocketAddrs + Send + Sync + Clone> UdpBackend<T>[src]

pub fn new(destination: T) -> Result<UdpBackend<T>>[src]

Construct a new UdpBackend with default chunk-size (ChunkSize::LAN)

pub fn new_with_chunksize(
    destination: T,
    chunk_size: ChunkSize
) -> Result<UdpBackend<T>>
[src]

Construct an new UdpBackend with the given chunk-size

pub fn compression(&self) -> MessageCompression[src]

Return the current set compression algorithm

pub fn set_compression(&mut self, compression: MessageCompression) -> &mut Self[src]

Set the compression algorithm

Trait Implementations

impl<T: ToSocketAddrs + Send + Sync + Clone> Backend for UdpBackend<T>[src]

fn log_message(&self, msg: WireMessage) -> Result<()>[src]

Log a message via UDP.

Auto Trait Implementations

impl<T> RefUnwindSafe for UdpBackend<T> where
    T: RefUnwindSafe

impl<T> Send for UdpBackend<T> where
    T: Send

impl<T> Sync for UdpBackend<T> where
    T: Sync

impl<T> Unpin for UdpBackend<T> where
    T: Unpin

impl<T> UnwindSafe for UdpBackend<T> where
    T: UnwindSafe

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,