metriki

Rust metrics ported from dropwizard metrics

APACHE-2.0 License

Downloads
41.7K
Stars
27
Committers
5

Bot releases are hidden (Show)

metriki - metriki-core-v1.7.3 Latest Release

Published by sunng87 over 2 years ago

Changed

  • Downgraded dashmap to 4.0 #65
metriki - metriki-core-v1.7.2

Published by sunng87 over 2 years ago

Changed

  • Using dashmap to improve performance and scalability in multithread scenarios [#62], benchmarking result: #63
metriki - metriki-r2d2-v0.1.0

Published by sunng87 about 3 years ago

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 - metriki-tracing-v0.1.0

Published by sunng87 about 3 years ago

Initial release of the metriki-tracing module.

This module acts as a subscriber layer of trace. It helps collect spans and events with metriki meter and timer. So you can use tracing API for metriki functionality together with metriki reporters and exporters.

See example and docs for its usage.

metriki - metriki-tower-v0.1.0

Published by sunng87 over 3 years ago

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 - metriki-core-v1.6.0

Published by sunng87 over 3 years ago

Core [1.6.0] - 2021-07-06

Added

  • Added Timer API TimerContextArc to work with an Arc reference of a timer [#36]
metriki - metriki-core-v1.3.0

Published by sunng87 over 3 years ago

Core [1.3.0] - 2021-05-13

Added

  • Global instance of MetricRegistry is added at metriki_core::global::global_registry().
metriki - Core: 1.2.0

Published by sunng87 over 3 years ago

Added

  • MetricsSet APIs

Changed

  • Histogram is now backed by HdrHistogram algorithm