diff --git a/ocis/pkg/flagset/flagset.go b/ocis/pkg/flagset/flagset.go index 517b59e4c2..422d61d9c0 100644 --- a/ocis/pkg/flagset/flagset.go +++ b/ocis/pkg/flagset/flagset.go @@ -51,14 +51,14 @@ func RootWithConfig(cfg *config.Config) []cli.Flag { }, &cli.StringFlag{ Name: "tracing-endpoint", - Value: "localhost:6831", + Value: "", Usage: "Endpoint for the agent", EnvVars: []string{"OCIS_TRACING_ENDPOINT"}, Destination: &cfg.Tracing.Endpoint, }, &cli.StringFlag{ Name: "tracing-collector", - Value: "http://localhost:14268/api/traces", + Value: "", Usage: "Endpoint for the collector", EnvVars: []string{"OCIS_TRACING_COLLECTOR"}, Destination: &cfg.Tracing.Collector, diff --git a/proxy/pkg/flagset/flagset.go b/proxy/pkg/flagset/flagset.go index 013005d526..151a31a77e 100644 --- a/proxy/pkg/flagset/flagset.go +++ b/proxy/pkg/flagset/flagset.go @@ -77,7 +77,7 @@ func ServerWithConfig(cfg *config.Config) []cli.Flag { }, &cli.StringFlag{ Name: "tracing-collector", - Value: "http://localhost:14268/api/traces", + Value: "", Usage: "Endpoint for the collector", EnvVars: []string{"PROXY_TRACING_COLLECTOR"}, Destination: &cfg.Tracing.Collector,