From 68b2952b76d2101c4d2d09fee44b5eb6316db0d5 Mon Sep 17 00:00:00 2001 From: Matt Bray Date: Thu, 17 Mar 2022 18:00:45 +0000 Subject: [PATCH] chore: scope test metrics --- tests/emit1.ml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/emit1.ml b/tests/emit1.ml index 76ddeb03..18925e32 100644 --- a/tests/emit1.ml +++ b/tests/emit1.ml @@ -13,9 +13,9 @@ let run () = let gc = Gc.stat() in T.Metrics.( emit [ - gauge ~name:"i" [int !i]; - gauge ~name:"major-heap-words" [int gc.Gc.heap_words]; - sum ~name:"minor-allocated" [float gc.Gc.minor_words]; + gauge ~name:"ocaml_opentracing.test.i" [int !i]; + gauge ~name:"ocaml_opentracing.test.major_heap_words" [int gc.Gc.heap_words]; + sum ~name:"ocaml_opentracing.test.minor_allocated" [float gc.Gc.minor_words]; ]); incr i;