Skip to content

Commit

Permalink
chore: add language identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
brnhensley committed May 29, 2023
1 parent cb6264f commit a7805c9
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,24 +151,24 @@ Infinite Tracing configuration settings include the standard distributed tracing
<td>
Pull down the libraries with this installation command, and then set up the configuration file or environment variables:

```
```bash
pip install newrelic[infinite-tracing]
```

**General configuration options:**

Configuration file (`newrelic.ini`):

```
```ini
distributed_tracing.enabled = true
infinite_tracing.trace_observer_host = YOUR_TRACE_OBSERVER_HOST
```

Environment variables:

```
```ini
NEW_RELIC_DISTRIBUTED_TRACING_ENABLED = true
NEW_RELIC_INFINITE_TRACING_TRACE_OBSERVER_HOST = "<a href="/docs/understand-dependencies/distributed-tracing/infinite-tracing/set-trace-observer#ui-endpoints">YOUR_TRACE_OBSERVER_HOST</a>"
NEW_RELIC_INFINITE_TRACING_TRACE_OBSERVER_HOST = "YOUR_TRACE_OBSERVER_HOST"
```

**Batching and compression configuration options:**
Expand All @@ -177,14 +177,14 @@ Infinite Tracing configuration settings include the standard distributed tracing

Configuration file (`newrelic.ini`):

```
```ini
infinite_tracing.batching = true # Send spans to the trace observer in batches rather than one by one
infinite_tracing.compression = true # Enable gzip compression for data sent via infinite tracing
```

Environment variables:

```
```ini
NEW_RELIC_INFINITE_TRACING_BATCHING = true
NEW_RELIC_INFINITE_TRACING_COMPRESSION = true
```
Expand Down Expand Up @@ -302,13 +302,13 @@ If you've been using an older agent without distributed tracing, before turning
<td>
Configuration file (`newrelic.ini`):

```
```ini
distributed_tracing.enabled = true
```

Environment variable:

```
```ini
NEW_RELIC_DISTRIBUTED_TRACING_ENABLED=true
```
</td>
Expand Down

0 comments on commit a7805c9

Please sign in to comment.