# README
Ziti Metrics Library
This is a metrics library which is built on, and extends the go-metrics library.
It extends it by adding the following:
- Support for interval counters. These collect event counts related to a given identifier, over a given interval. The interval buckets are flushed regularly. These are good for things like collecting usage data.
- A Dispose method is defined on metrics, so they can be cleaned up, for metrics tied to transient entities.
- Reference counted metrics
# Packages
No description provided by the author
# Functions
No description provided by the author
No description provided by the author
No description provided by the author
# Interfaces
Gauge represents a metric which is measuring a count and a rate.
Handler represents a sink for metric events.
Histogram represents a metric which is measuring the distribution of values for some measurement.
IntervalCounter allows tracking counters which are bucketized by some interval.
Meter represents a metric which is measuring a count and a rate.
Metric is the base functionality for all metrics types.
Registry allows for configuring and accessing metrics for an application.
No description provided by the author
A UsageCounter allows tracking usage bucketized by some interval.
UsageRegistry extends registry to allow collecting usage metrics.
No description provided by the author