From 9cc7199cb20e3755969c28b0ff5641d8405e2513 Mon Sep 17 00:00:00 2001 From: Tyler Yahn Date: Tue, 18 Aug 2020 08:58:18 -0700 Subject: [PATCH] Update runtime.go instrumentation Meter name (#241) Resolve #240 --- instrumentation/runtime/runtime.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/instrumentation/runtime/runtime.go b/instrumentation/runtime/runtime.go index ab3d4536ef8..b8d7acc762d 100644 --- a/instrumentation/runtime/runtime.go +++ b/instrumentation/runtime/runtime.go @@ -108,9 +108,7 @@ func Start(c Config) error { } r := &runtime{ meter: c.MeterProvider.Meter( - // TODO: should library names be qualified? - // e.g., contrib/runtime? - "runtime", + "go.opentelemetry.io/contrib/instrumentation/runtime", metric.WithInstrumentationVersion(contrib.SemVersion()), ), config: c,