Btest updates due to recent changes

This commit is contained in:
Tim Wojtulewicz 2024-03-27 12:46:10 -07:00
parent 017ee4509c
commit a63ea5a04e
10 changed files with 37 additions and 89 deletions

View file

@ -11,7 +11,7 @@
global btest_a_cf = Telemetry::register_counter_family([
$prefix="btest",
$name="a_test",
$unit="1",
$unit="",
$help_text="A btest metric",
$labels=vector("x", "y")
]);
@ -19,7 +19,7 @@ global btest_a_cf = Telemetry::register_counter_family([
global btest_b_cf = Telemetry::register_counter_family([
$prefix="btest",
$name="b_test",
$unit="1",
$unit="",
$help_text="Another btest metric",
$labels=vector("x", "y")
]);
@ -27,7 +27,7 @@ global btest_b_cf = Telemetry::register_counter_family([
global btest_c_cf = Telemetry::register_counter_family([
$prefix="btest",
$name="c_test",
$unit="1",
$unit="",
$help_text="The last btest metric",
$labels=vector("x", "y")
]);
@ -43,7 +43,7 @@ global system_sensor_temp_gf = Telemetry::register_gauge_family([
global btest_sample_histogram_hf = Telemetry::register_histogram_family([
$prefix="btest",
$name="sample_histogram",
$unit="1",
$unit="",
$help_text="A sample histogram that is not returned by Telemetry::collect_metrics",
$bounds=vector(1.0, 2.0, 3.0, 4.0, 5.0),
$labels=vector("dim")