[][src]Struct collectd_plugin::CollectdLoggerBuilder

pub struct CollectdLoggerBuilder { /* fields omitted */ }

Bridges the gap between collectd and rust logging. Terminology and filters methods found here are from env_logger.

It is recommended to instantiate the logger in PluginManager::plugins.

The use case of multiple rust plugins that instantiate a global logger is supported. Each plugin will have its own copy of a global logger. Thus plugins won't interefere with others and their logging.

Example

use collectd_plugin::{ConfigItem, PluginManager, PluginRegistration, CollectdLoggerBuilder};
use log::LevelFilter;
use std::error;

#[derive(Default)]
struct MyPlugin;
impl PluginManager for MyPlugin {
    fn name() -> &'static str {
        "myplugin"
    }

    fn plugins(_config: Option<&[ConfigItem]>) -> Result<PluginRegistration, Box<error::Error>> {
       CollectdLoggerBuilder::new()
           .prefix_plugin::<Self>()
           .filter_level(LevelFilter::Info)
           .try_init()
           .expect("really the only thing that should create a logger");
        unimplemented!()
    }
}

Methods

impl CollectdLoggerBuilder[src]

pub fn new() -> Self[src]

Initializes the log builder with defaults

pub fn try_init(&mut self) -> Result<(), SetLoggerError>[src]

Initializes the global logger with the built collectd logger.

Errors

This function will fail if it is called more than once, or if another library has already initialized a global logger.

pub fn prefix_plugin<T: PluginManager>(&mut self) -> &mut Self[src]

Prefixes all log messages with a plugin's name. This is recommended to aid debugging and gain insight into collectd logs.

pub fn filter_level(&mut self, level: LevelFilter) -> &mut Self[src]

pub fn filter_module(&mut self, module: &str, level: LevelFilter) -> &mut Self[src]

pub fn filter(&mut self, module: Option<&str>, level: LevelFilter) -> &mut Self[src]

pub fn parse(&mut self, filters: &str) -> &mut Self[src]

pub fn format<F: 'static>(&mut self, format: F) -> &mut Self where
    F: Fn(&mut dyn Write, &Record) -> Result<()> + Sync + Send
[src]

Sets the format function for formatting the log output.

Trait Implementations

impl Default for CollectdLoggerBuilder[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.