From 8f35766d59ce1bdfdbecae7d90796a01ce1decbb Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 24 Nov 2023 15:40:39 +0100 Subject: [PATCH] Make autocomplete filtering default to true --- cmd/tempo/app/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tempo/app/config.go b/cmd/tempo/app/config.go index a90d66c6d7fa..e5c9f4f5801e 100644 --- a/cmd/tempo/app/config.go +++ b/cmd/tempo/app/config.go @@ -73,7 +73,7 @@ func (c *Config) RegisterFlagsAndApplyDefaults(prefix string, f *flag.FlagSet) { f.StringVar(&c.HTTPAPIPrefix, "http-api-prefix", "", "String prefix for all http api endpoints.") f.BoolVar(&c.UseOTelTracer, "use-otel-tracer", false, "Set to true to replace the OpenTracing tracer with the OpenTelemetry tracer") f.BoolVar(&c.EnableGoRuntimeMetrics, "enable-go-runtime-metrics", false, "Set to true to enable all Go runtime metrics") - f.BoolVar(&c.AutocompleteFilteringEnabled, "autocomplete-filtering.enabled", false, "Set to true to enable autocomplete filtering") + f.BoolVar(&c.AutocompleteFilteringEnabled, "autocomplete-filtering.enabled", true, "Set to false to disable autocomplete filtering") // Server settings flagext.DefaultValues(&c.Server)