Releases: sunng87/metriki
Releases · sunng87/metriki
metriki-core-v1.7.3
Changed
- Downgraded dashmap to 4.0 #65
metriki-core-v1.7.2
metriki-r2d2-v0.1.0
The initial release of metriki instrumentation for r2d2.
This module provides metrics support for r2d2 and diesel database connection pool. It monitors performance and usage of your database connections. The release has metrics for:
- Histogram to record connection borrow time
- Meter to measure connection borrow rate, aka database qps
- Histogram to record connection usage time, aka the time to execute your db query
- Meter to measure connection borrow failure rate
These metrics are useful for tracking performance of database-driven applications, together with APIs-level metrics.
For more information, check docs.rs.
metriki-tracing-v0.1.0
metriki-tower-v0.1.0
Tower [0.1.0] - 2021-07-07
Initial release of tower instrument. The module provides MetricsLayer
and
MetricsService
for tower applications. Some built-in metrics are provided by default:
- A timer to measure latency and rate
- A meter to measure error rate
metriki-core-v1.6.0
Core [1.6.0] - 2021-07-06
Added
- Added Timer API
TimerContextArc
to work with anArc
reference of a timer [#36]
metriki-core-v1.3.0
Core [1.3.0] - 2021-05-13
Added
- Global instance of
MetricRegistry
is added atmetriki_core::global::global_registry()
.
Core: 1.2.0
Added
MetricsSet
APIs
Changed
- Histogram is now backed by HdrHistogram algorithm