Skip to content

Commit 4c3043e

Browse files
authored
Update README.md
1 parent c27d1d9 commit 4c3043e

1 file changed

Lines changed: 16 additions & 4 deletions

File tree

README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ receivers:
4747
otlp:
4848
protocols:
4949
grpc:
50+
endpoint: 0.0.0.0:4317
5051
http:
52+
endpoint: 0.0.0.0:4318
5153

5254
processors:
5355
batch:
@@ -56,8 +58,18 @@ processors:
5658

5759
exporters:
5860
tinybird:
59-
endpoint: ${OTEL_TINYBIRD_API_HOST}
60-
token: ${OTEL_TINYBIRD_TOKEN}
61+
endpoint: ${OTEL_TINYBIRD_API_HOST} # Your Events API endpoint, e.g. https://api.us-east.aws.tinybird.co
62+
token: ${OTEL_TINYBIRD_TOKEN} # Token with append permissions
63+
sending_queue:
64+
enabled: true
65+
queue_size: 104857600 # Total memory buffer in bytes (100 MB)
66+
sizer: bytes
67+
batch:
68+
flush_timeout: 5s # Max wait time before flushing
69+
min_size: 1024000 # Min batch size: 1 MB
70+
max_size: 8388608 # Max batch size: 8 MB (Events API limit is 10 MB)
71+
retry_on_failure:
72+
enabled: true
6173
metrics:
6274
sum:
6375
datasource: otel_metrics_sum
@@ -67,10 +79,10 @@ exporters:
6779
datasource: otel_metrics_exponential_histogram
6880
gauge:
6981
datasource: otel_metrics_gauge
70-
traces:
71-
datasource: otel_traces
7282
logs:
7383
datasource: otel_logs
84+
traces:
85+
datasource: otel_traces
7486

7587
service:
7688
pipelines:

0 commit comments

Comments
 (0)