Trait fuse_backend_rs::api::server::MetricsHook[][src]

pub trait MetricsHook {
    fn collect(&self, ih: &InHeader);
fn release(&self, oh: Option<&OutHeader>); }
Expand description

Provide concrete backend filesystem a way to catch information/metrics from fuse.

Required methods

collect() will be invoked before the real request is processed

release() will be invoked after the real request is processed

Implementors