mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 16:56:24 +02:00
Split listener (#141)
This commit is contained in:
parent
22bc3d2798
commit
285aa1419b
20 changed files with 449 additions and 335 deletions
40
demos/function_calling/otel-collector-config.yaml
Executable file
40
demos/function_calling/otel-collector-config.yaml
Executable file
|
|
@ -0,0 +1,40 @@
|
|||
extensions:
|
||||
memory_ballast:
|
||||
size_mib: 512
|
||||
zpages:
|
||||
endpoint: 0.0.0.0:55679
|
||||
health_check:
|
||||
|
||||
receivers:
|
||||
otlp:
|
||||
protocols:
|
||||
grpc:
|
||||
endpoint: 0.0.0.0:4317
|
||||
http:
|
||||
endpoint: 0.0.0.0:4318
|
||||
|
||||
processors:
|
||||
batch:
|
||||
memory_limiter:
|
||||
# 75% of maximum memory up to 4G
|
||||
limit_mib: 1536
|
||||
# 25% of limit up to 2G
|
||||
spike_limit_mib: 512
|
||||
check_interval: 5s
|
||||
|
||||
exporters:
|
||||
debug:
|
||||
verbosity: detailed
|
||||
|
||||
service:
|
||||
pipelines:
|
||||
traces:
|
||||
receivers: [otlp]
|
||||
processors: [memory_limiter, batch]
|
||||
exporters: [debug]
|
||||
metrics:
|
||||
receivers: [otlp]
|
||||
processors: [memory_limiter, batch]
|
||||
exporters: [debug]
|
||||
|
||||
extensions: [memory_ballast, zpages, health_check]
|
||||
Loading…
Add table
Add a link
Reference in a new issue