#telemetry #telemetry-metrics #yaml #metrics

metrics-observer-yaml

A metrics-core compatible observer that outputs YAML

2 releases

0.1.1 Jul 30, 2019
0.1.0 Jul 30, 2019

#34 in #telemetry-metrics

Download history 954/week @ 2025-09-25 796/week @ 2025-10-02 754/week @ 2025-10-09 599/week @ 2025-10-16 849/week @ 2025-10-23 456/week @ 2025-10-30 1059/week @ 2025-11-06 573/week @ 2025-11-13 677/week @ 2025-11-20 517/week @ 2025-11-27 911/week @ 2025-12-04 490/week @ 2025-12-11 471/week @ 2025-12-18 454/week @ 2025-12-25 951/week @ 2026-01-01 460/week @ 2026-01-08

2,421 downloads per month
Used in 11 crates (2 directly)

MIT license

195KB
3.5K SLoC

Observes metrics in YAML format.

Metric scopes are used to provide the hierarchy and indentation 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 YamlBuilder. 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

metrics-observer-yaml

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

metrics-observer-yaml is a metrics-core compatible observer that outputs YAML.

code of conduct

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

Dependencies

~3MB
~58K SLoC