# Copyright 2024 RustFS Team # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. receivers: otlp: protocols: grpc: endpoint: 0.0.0.0:4317 http: endpoint: 0.0.0.0:4318 processors: batch: timeout: 1s send_batch_size: 1024 memory_limiter: check_interval: 1s limit_mib: 1024 spike_limit_mib: 256 transform/logs: log_statements: - context: log statements: - set(attributes["message"], body.string) - set(attributes["log.body"], body.string) exporters: otlp/tempo: endpoint: "tempo:4317" tls: insecure: true compression: gzip retry_on_failure: enabled: true initial_interval: 1s max_interval: 30s max_elapsed_time: 300s sending_queue: enabled: true num_consumers: 10 queue_size: 5000 otlp/jaeger: endpoint: "jaeger:4317" tls: insecure: true compression: gzip retry_on_failure: enabled: true initial_interval: 1s max_interval: 30s max_elapsed_time: 300s sending_queue: enabled: true num_consumers: 10 queue_size: 5000 prometheus: endpoint: "0.0.0.0:8889" send_timestamps: true metric_expiration: 5m resource_to_telemetry_conversion: enabled: true otlphttp/loki: endpoint: "http://loki:3100/otlp" tls: insecure: true compression: gzip extensions: health_check: endpoint: 0.0.0.0:13133 pprof: endpoint: 0.0.0.0:1888 zpages: endpoint: 0.0.0.0:55679 service: extensions: [ health_check, pprof, zpages ] pipelines: traces: receivers: [ otlp ] processors: [ memory_limiter, batch ] exporters: [ otlp/tempo, otlp/jaeger ] metrics: receivers: [ otlp ] processors: [ batch ] exporters: [ prometheus ] logs: receivers: [ otlp ] processors: [ batch, transform/logs ] exporters: [ otlphttp/loki ] telemetry: logs: level: "info" encoding: "json" metrics: level: "normal" readers: - pull: exporter: prometheus: host: '0.0.0.0' port: 8888