From 8e49f725b0432ba4250367ccd399f6a9500a5ea3 Mon Sep 17 00:00:00 2001 From: Manuel Riezebosch Date: Tue, 17 Sep 2024 09:18:15 +0200 Subject: [PATCH] fix(readme): only publish meters on leaf nodes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a752958..e6897a4 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ This instrumentation can be configured to change the default behavior by using ` using var meterProvider = Sdk.CreateMeterProviderBuilder() .AddHealthChecksInstrumentation(options => { - options.StatusGaugeName = "myapp.health"; + options.StatusGaugeName = "myapp.health.status"; options.DurationGaugeName = "myapp.health.duration"; options.IncludeHealthCheckMetadata = true; })