Skip to content

Commit 8164bdf

Browse files
committed
update readme
Signed-off-by: AvivGuiser <[email protected]>
1 parent 7194cde commit 8164bdf

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

charts/tempo-distributed/README.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1157,4 +1157,27 @@ traces:
11571157
receiverConfig: {}
11581158
# -- Default OTLP gRPC port
11591159
port: 4317
1160-
```
1160+
```
1161+
1162+
### Enabling gRPC Open Telemetry
1163+
1164+
gRPC for Open Telemetry is disabled by default, simply flip the bool in the `traces` block to turn it on.
1165+
1166+
If you have enabled the gateway as well, this will let you push traces using the default Open Telemetry API path (`/opentelemetry.proto.collector.trace.v1.TraceService/Export`), on the 4317 port. This port can be overwriten as well in the values.
1167+
1168+
```yaml
1169+
traces:
1170+
otlp:
1171+
http:
1172+
# -- Enable Tempo to ingest Open Telemetry HTTP traces
1173+
enabled: false
1174+
# -- HTTP receiver advanced config
1175+
receiverConfig: {}
1176+
grpc:
1177+
# -- Enable Tempo to ingest Open Telemetry GRPC traces
1178+
enabled: true
1179+
# -- GRPC receiver advanced config
1180+
receiverConfig: {}
1181+
# -- Default OTLP gRPC port
1182+
port: 4317
1183+
```

0 commit comments

Comments
 (0)