diff --git a/content/en/docs/instrumentation/python/automatic/agent-config.md b/content/en/docs/instrumentation/python/automatic/agent-config.md index 22b523603409..618d0b5c6ce7 100644 --- a/content/en/docs/instrumentation/python/automatic/agent-config.md +++ b/content/en/docs/instrumentation/python/automatic/agent-config.md @@ -28,8 +28,12 @@ opentelemetry-instrument \ Here's an explanation of what each configuration does: -- `distro` specifies which distro should be loaded. Argument should be the entry point name of the desired distro. If only a single distro exists, this argument may be left out. -- `configurator` specifies which configurator should be loaded. Argument should be the entry point name of the desired configurator. If only a single configurator exists, this argument may be left out. +- `distro` specifies which distro should be loaded. Argument should be the entry + point name of the desired distro. If only a single distro exists, this + argument may be left out. +- `configurator` specifies which configurator should be loaded. Argument should + be the entry point name of the desired configurator. If only a single + configurator exists, this argument may be left out. - `traces_exporter` specifies which traces exporter to use. In this case, traces are being exported to `console` (stdout) and with `otlp`. The `otlp` option tells `opentelemetry-instrument` to send the traces to an endpoint that @@ -73,7 +77,9 @@ environment variables with `OTEL_PYTHON_`. ### Selecting Distro and Configurator -In addition to the `distro` and `configurator` arguments, you can use the `OTEL_PYTHON_DISTRO` and `OTEL_PYTHON_CONFIGURATOR` environment variables. If only a single distro or configurator exists, these arguments may be left out. +In addition to the `distro` and `configurator` arguments, you can use the +`OTEL_PYTHON_DISTRO` and `OTEL_PYTHON_CONFIGURATOR` environment variables. If +only a single distro or configurator exists, these arguments may be left out. ### Excluded URLs