Metricator is a lightweight Rust library designed to help you track and analyze metrics effortlessly. It provides two main utilities:
- RateMetric: Evaluates how frequently events occur per second.
- AggregateMetric: Tracks minimum, maximum, and average values for various numeric data types.
Whether you're monitoring system performance, tracking user interactions, or analyzing data streams, Metricator offers a simple and efficient way to gather and process essential metrics.
-
RateMetric:
- Calculate event rates based on elapsed time intervals.
-
AggregateMetric:
- Generic support for numeric types (
i32,u32,f32, etc.). - Track minimum, maximum, and average values.
- Configurable thresholds to trigger calculations.
- Generic support for numeric types (
-
Efficient and Lightweight: Minimal overhead, suitable for performance-critical applications.
Add metricator to your Cargo.toml:
[dependencies]
metricator = "^0.0.1"