Skip to content

Releases: sunng87/metriki

metriki-core-v1.7.3

03 Feb 05:18
8bd6713
Compare
Choose a tag to compare

Changed

  • Downgraded dashmap to 4.0 #65

metriki-core-v1.7.2

26 Jan 14:40
935e324
Compare
Choose a tag to compare

Changed

  • Using dashmap to improve performance and scalability in multithread scenarios [#62], benchmarking result: #63

metriki-r2d2-v0.1.0

13 Oct 14:55
4f9fe06
Compare
Choose a tag to compare

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

10 Oct 04:31
22dd15d
Compare
Choose a tag to compare

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-tower-v0.1.0

07 Jul 15:13
ec5309c
Compare
Choose a tag to compare

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

07 Jul 15:13
ec5309c
Compare
Choose a tag to compare

Core [1.6.0] - 2021-07-06

Added

  • Added Timer API TimerContextArc to work with an Arc reference of a timer [#36]

metriki-core-v1.3.0

13 May 13:45
28e40b6
Compare
Choose a tag to compare

Core [1.3.0] - 2021-05-13

Added

  • Global instance of MetricRegistry is added at metriki_core::global::global_registry().

Core: 1.2.0

10 May 15:30
9265881
Compare
Choose a tag to compare

Added

  • MetricsSet APIs

Changed

  • Histogram is now backed by HdrHistogram algorithm