Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydvoss authored and chalin committed Jun 9, 2023
1 parent f91c98e commit e8777b5
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions content/en/docs/instrumentation/python/automatic/agent-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit e8777b5

Please sign in to comment.