From 4d14f29f463fb6301837ceec93fd6755fd77c375 Mon Sep 17 00:00:00 2001 From: David Ashpole Date: Thu, 3 Oct 2024 12:02:23 -0400 Subject: [PATCH] Update sdk/metric/config.go Co-authored-by: Tyler Yahn --- sdk/metric/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/metric/config.go b/sdk/metric/config.go index 42211f50329..ce325f615d6 100644 --- a/sdk/metric/config.go +++ b/sdk/metric/config.go @@ -156,9 +156,9 @@ func WithView(views ...View) Option { // exemplar reservoir, but the exemplar reservoir makes the final decision of // whether to store an exemplar. // -// By default, the [go.opentelemetry.io/otel/sdk/metric/exemplar.SampledFilter] +// By default, the [exemplar.SampledFilter] // is used. Exemplars can be entirely disabled by providing the -// [go.opentelemetry.io/otel/sdk/metric/exemplar.AlwaysOffFilter]. +// [exemplar.AlwaysOffFilter]. func WithExemplarFilter(filter exemplar.Filter) Option { return optionFunc(func(cfg config) config { cfg.exemplarFilter = filter