Skip to content

Commit

Permalink
Set jaeger default tracing config
Browse files Browse the repository at this point in the history
  • Loading branch information
kulmann committed Jun 30, 2020
1 parent 91ca362 commit 6609372
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/flagset/flagset.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 6609372

Please sign in to comment.