From 96b8a92fc11d094eedc24bf9b3f76a230d654416 Mon Sep 17 00:00:00 2001 From: Nat Lasseter Date: Mon, 16 Nov 2020 12:25:42 +0000 Subject: Better examples --- examples/test_histo.rb | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 examples/test_histo.rb (limited to 'examples/test_histo.rb') diff --git a/examples/test_histo.rb b/examples/test_histo.rb new file mode 100644 index 0000000..ed3fb01 --- /dev/null +++ b/examples/test_histo.rb @@ -0,0 +1,41 @@ +class TestHisto + def initialize(collector, config) + @collector = collector + @config = config + end + + def raid + # Clean up any previously reported metrics + # to prevent stale labelsets + @collector.redact!("histo") + @collector.redact!("summ") + + # Report new metrics + @collector.report!( + "histo", + { + buckets: { + 0.5 => 1, + 1 => 2 + }, + count: 3, + sum: 3 + }, + help: "A histogram over the data [0.25, 0.75, 2]", + type: "histogram" + ) + @collector.report!( + "summ", + { + quantiles: { + 0.5 => 5, + 0.95 => 9.5 + }, + count: 21, + sum: 105 + }, + help: "A summary of data (0..10).step(0.5)", + type: "summary" + ) + end +end -- cgit v1.2.1