From ded9a0186eebd15fac4dde2182d84e0419f86c38 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Tue, 30 Jun 2020 15:54:21 +0200 Subject: [PATCH] Set jaeger default tracing config --- pkg/flagset/flagset.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/flagset/flagset.go b/pkg/flagset/flagset.go index a02ab2d9b..df2ed6015 100644 --- a/pkg/flagset/flagset.go +++ b/pkg/flagset/flagset.go @@ -70,14 +70,14 @@ func ServerWithConfig(cfg *config.Config) []cli.Flag { }, &cli.StringFlag{ Name: "tracing-endpoint", - Value: "", + Value: "localhost:6831", Usage: "Endpoint for the agent", EnvVars: []string{"OCIS_TRACING_ENDPOINT"}, Destination: &cfg.Tracing.Endpoint, }, &cli.StringFlag{ Name: "tracing-collector", - Value: "", + Value: "http://localhost:14268/api/traces", Usage: "Endpoint for the collector", EnvVars: []string{"OCIS_TRACING_COLLECTOR"}, Destination: &cfg.Tracing.Collector,