derust 0.1.1

Easy way to start your Rust asynchronous application server using Tokio and Axum frameworks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub(crate) mod counter;
pub(crate) mod gauge;
pub(crate) mod money;
pub(crate) mod tags;
pub(crate) mod timer;

pub use counter::*;
pub use gauge::*;
use metrics::Histogram;
pub use money::*;
pub use tags::*;
pub use timer::*;

pub trait Registry: Clone {
    fn timer(&self, name: &str, metric_tags: MetricTags) -> Histogram;
}