#metrics #json #telemetry #json-format

metrics-observer-json

A metrics-core compatible observer that outputs JSON

2 releases

0.1.1 Jul 30, 2019
0.1.0 Jul 30, 2019

#63 in #telemetry

Download history 564/week @ 2024-03-15 1394/week @ 2024-03-22 829/week @ 2024-03-29 526/week @ 2024-04-05 1089/week @ 2024-04-12 981/week @ 2024-04-19 338/week @ 2024-04-26 613/week @ 2024-05-03 254/week @ 2024-05-10 250/week @ 2024-05-17 412/week @ 2024-05-24 367/week @ 2024-05-31 626/week @ 2024-06-07 467/week @ 2024-06-14 1216/week @ 2024-06-21 413/week @ 2024-06-28

2,748 downloads per month
Used in 9 crates (2 directly)

MIT license

180KB
3K SLoC

metrics-observer-json

conduct-badge downloads-badge release-badge docs-badge license-badge

metrics-observer-json is a metrics-core compatible observer that outputs JSON.

code of conduct

NOTE: All conversations and contributions to this project shall adhere to the Code of Conduct.


lib.rs:

Observes metrics in JSON format.

Metric scopes are used to provide the hierarchy of metrics. As an example, for a snapshot with two metrics — server.msgs_received and server.msgs_sent — we would expect to see this output:

{"server":{"msgs_received":42,"msgs_sent":13}}

If we added another metric — configuration_reloads — we would expect to see:

{"configuration_reloads":2,"server":{"msgs_received":42,"msgs_sent":13}}

Metrics are sorted alphabetically.

Histograms

Histograms are rendered with a configurable set of quantiles that are provided when creating an instance of JsonBuilder. They are formatted using human-readable labels when displayed to the user. For example, 0.0 is rendered as "min", 1.0 as "max", and anything in between using the common "pXXX" format i.e. a quantile of 0.5 or percentile of 50 would be p50, a quantile of 0.999 or percentile of 99.9 would be p999, and so on.

All histograms have the sample count of the histogram provided in the output.

{"connect_time_count":15,"connect_time_min":1334,"connect_time_p50":1934,
"connect_time_p99":5330,"connect_time_max":139389}

Dependencies

~1.2–1.7MB
~31K SLoC