From 536495207d8e2af8861a75ac029c5fbef0787b3b Mon Sep 17 00:00:00 2001 From: Brendan Le Glaunec Date: Tue, 3 Oct 2023 01:23:02 -0700 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 63cb206..d65ad3d 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ The tracing flags are used by `cmd.NewTracer` to create a new open telemetry `tr #### FlagTracingExporter: *--tracing.exporter, $TRACING_EXPORTER* -This flag sets the exporter to send spans to. The available options are `jaeger` and `zipkin`. +This flag sets the exporter to send spans to. The available options are `zipkin`, `otlphttp` and `otlpgrpc`. Example: `--tracing.exporter=jaeger` From a8e06aa8ea1174aa4a580efb70a80f4aa2921c6a Mon Sep 17 00:00:00 2001 From: Brendan Le Glaunec Date: Tue, 3 Oct 2023 01:24:06 -0700 Subject: [PATCH 2/2] Update trace.go --- trace.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trace.go b/trace.go index e6c1cb1..e025e1a 100644 --- a/trace.go +++ b/trace.go @@ -29,7 +29,7 @@ const ( var TracingFlags = Flags{ &cli.StringFlag{ Name: FlagTracingExporter, - Usage: "The tracing backend. Supported: 'zipkin', 'otlphttp', 'otlpgrpc.", + Usage: "The tracing backend. Supported: 'zipkin', 'otlphttp', 'otlpgrpc'.", EnvVars: []string{"TRACING_EXPORTER"}, }, &cli.StringFlag{