Skip to content

Commit f9ec5b6

Browse files
committed
Update otel connector docs to include compression param.
Signed-off-by: Daksh Chauhan <dak-x@outlook.com>
1 parent dbbbf46 commit f9ec5b6

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

docs/reference/connectors/otel.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,24 @@ define connector my_otel from otel_client
2424
with
2525
config = {
2626
"url": "127.0.0.1:4317", # Connect to localhost via gRPC to port 4317
27+
28+
# Enable trace event support ( default: true )
29+
# "trace": false,
30+
31+
# Enable metrics event support ( default: true )
32+
# "metrics": false,
33+
34+
# Enable logs event support ( default: true )
35+
# "logs": false,
36+
37+
# Enables compression on payloads. ( supported: gzip ; default: none )
38+
# "compression" : gzip,
2739
},
2840
reconnect = {
2941
"retry": {
3042
"interval_ms": 100, # Retry on disconnect every 100ms
3143
"growth_rate": 2, # Double interval for each attempt
3244
"max_retries": 3, # Try no more than 3 times to reconnect
33-
34-
# Enable trace event support ( default: true )
35-
# "trace": false,
36-
37-
# Enable metrics event support ( default: true )
38-
# "metrics": false,
39-
40-
# Enable logs event support ( default: true )
41-
# "logs": false,
4245
}
4346
}
4447
end;

0 commit comments

Comments
 (0)