Skip to content

Latest commit

 

History

History
32 lines (17 loc) · 783 Bytes

README.md

File metadata and controls

32 lines (17 loc) · 783 Bytes

collectors

Generic collector types suitable for aggregating metrics. Implements Histogram, Counter and Gauge.

Dependencies GitHub Actions status Known Vulnerabilities

Histogram

.observe()

.toJSON()

Counter

.inc()

.add()

.toJSON()

Gauge

.inc()

.dec()

.set()

.toJSON()