Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update otel connector docs to include compression param. #222

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions docs/reference/connectors/otel.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,24 @@ define connector my_otel from otel_client
with
config = {
"url": "127.0.0.1:4317", # Connect to localhost via gRPC to port 4317

# Enable trace event support ( default: true )
# "trace": false,

# Enable metrics event support ( default: true )
# "metrics": false,

# Enable logs event support ( default: true )
# "logs": false,

# Enables compression on payloads. ( supported: gzip ; default: none )
# "compression" : gzip,
},
reconnect = {
"retry": {
"interval_ms": 100, # Retry on disconnect every 100ms
"growth_rate": 2, # Double interval for each attempt
"max_retries": 3, # Try no more than 3 times to reconnect

# Enable trace event support ( default: true )
# "trace": false,

# Enable metrics event support ( default: true )
# "metrics": false,

# Enable logs event support ( default: true )
# "logs": false,
}
}
end;
Expand Down