@@ -130,7 +130,6 @@ it print to the console for now:
130130{{< tabpane text=true >}} {{% tab "Linux/macOS" %}}
131131
132132``` shell
133- export OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED=true
134133opentelemetry-instrument \
135134 --traces_exporter console \
136135 --metrics_exporter console \
@@ -142,7 +141,6 @@ opentelemetry-instrument \
142141{{% /tab %}} {{% tab "Windows (PowerShell)" %}}
143142
144143``` powershell
145- $env:OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED="true"
146144opentelemetry-instrument `
147145 --traces_exporter console `
148146 --metrics_exporter console `
@@ -362,7 +360,6 @@ Now run the app again:
362360{{< tabpane text=true >}} {{% tab "Linux/macOS" %}}
363361
364362``` shell
365- export OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED=true
366363opentelemetry-instrument \
367364 --traces_exporter console \
368365 --metrics_exporter console \
@@ -374,7 +371,6 @@ opentelemetry-instrument \
374371{{% /tab %}} {{% tab "Windows (PowerShell)" %}}
375372
376373``` powershell
377- $env:OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED="true"
378374opentelemetry-instrument `
379375 --traces_exporter console `
380376 --metrics_exporter console `
@@ -525,7 +521,6 @@ Now run the app again:
525521{{< tabpane text=true >}} {{% tab "Linux/macOS" %}}
526522
527523``` shell
528- export OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED=true
529524opentelemetry-instrument \
530525 --traces_exporter console \
531526 --metrics_exporter console \
@@ -537,7 +532,6 @@ opentelemetry-instrument \
537532{{% /tab %}} {{% tab "Windows (PowerShell)" %}}
538533
539534``` powershell
540- $env:OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED="true"
541535opentelemetry-instrument `
542536 --traces_exporter console `
543537 --metrics_exporter console `
@@ -798,14 +792,12 @@ Run the application like before, but don't export to the console:
798792{{< tabpane text=true >}} {{% tab "Linux/macOS" %}}
799793
800794``` shell
801- export OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED=true
802795opentelemetry-instrument --logs_exporter otlp flask run -p 8080
803796```
804797
805798{{% /tab %}} {{% tab "Windows (PowerShell)" %}}
806799
807800``` powershell
808- $env:OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED="true"
809801opentelemetry-instrument --logs_exporter otlp flask run -p 8080
810802```
811803
0 commit comments