Skip to content

Commit b18a430

Browse files
maycmleedomalessi
andauthored
Apply suggestions from code review
Co-authored-by: domalessi <[email protected]>
1 parent 16f8e16 commit b18a430

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/en/observability_pipelines/sources/opentelemetry.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Configure your OTel exporters to point to HTTP or gRPC.
4646

4747
The Worker exposes the HTTP endpoint on port 4318, which is the default port. You can configure the port value in the Worker.
4848

49-
This is an example of configuring your OTel exporters with HTTP using Python:
49+
For example, to configure an OTel exporter over HTTP in Python:
5050

5151
```python
5252
from opentelemetry.exporter.otlp.proto.http._log_exporter import OTLPLogExporter
@@ -59,7 +59,7 @@ This is an example of configuring your OTel exporters with HTTP using Python:
5959

6060
The Worker exposes the gRPC endpoint on port 4317, which is the default port. You can configure the port value in the Worker.
6161

62-
This is an example of configuring your OTel exporters with gRPC:
62+
For example, to configure an OTel exporter over gRPC in Python:
6363

6464
```python
6565
from opentelemetry.exporter.otlp.proto.grpc._log_exporter import OTLPLogExporter
@@ -68,7 +68,7 @@ This is an example of configuring your OTel exporters with gRPC:
6868
)
6969
```
7070

71-
Based on the above example configurations, you can enter these default values for the following environment variables. **Note**: If you configured the port values in the Worker, use your configured values instead.
71+
Set the listener address environment variables to the following default values. If you configured different port values in the Worker, use those instead.
7272

7373
- HTTP listener address: `worker:4318`
7474
- gRPC listener address: `worker:4317`

0 commit comments

Comments
 (0)