Skip to content

Commit

Permalink
Update step-04.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfgangB33r authored Feb 22, 2024
1 parent 792dc0a commit 2de69c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions course/step-04.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ See an example below that shows how to set a Dynatrace environment on Linux to r

```bash
export OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=https://<YOUR_DYNATRACE_ID>.live.dynatrace.com/api/v2/otlp/v1/traces
export OTEL_EXPORTER_OTLP_TRACES_HEADERS=Authorization=Api-Token%20<YOUR_DYNATRACE_API_TOKEN>
export OTEL_EXPORTER_OTLP_TRACES_HEADERS="Authorization=Api-Token%20<YOUR_DYNATRACE_API_TOKEN>"
```

See an example below that shows how to set a Dynatrace environment on Windows to receive the OpenTelemetry spans:

```bash
set OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=https://<YOUR_DYNATRACE_ID>.live.dynatrace.com/api/v2/otlp/v1/traces
set OTEL_EXPORTER_OTLP_TRACES_HEADERS="Authorization=Api-Token%20<YOUR_DYNATRACE_API_TOKEN>"
set OTEL_EXPORTER_OTLP_TRACES_HEADERS=Authorization=Api-Token%20<YOUR_DYNATRACE_API_TOKEN>
```

The instrumentation code of the Flask application has been modified to not only send the spans to the local
Expand Down

0 comments on commit 2de69c7

Please sign in to comment.