1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # Copyright Materialize, Inc. and contributors. All rights reserved.
- #
- # Use of this software is governed by the Business Source License
- # included in the LICENSE file at the root of this repository.
- #
- # As of the Change Date specified in that file, in accordance with
- # the Business Source License, use of this software will be governed
- # by the Apache License, Version 2.0.
- server:
- http_listen_port: 3200
- distributor:
- receivers:
- otlp:
- protocols:
- grpc:
- max_recv_msg_size_mib: 20
- ingester:
- max_block_duration: 5m
- compactor:
- compaction:
- block_retention: 15m
- metrics_generator:
- registry:
- external_labels:
- source: tempo
- cluster: docker-compose
- storage:
- path: /tmp/tempo/generator/wal
- remote_write:
- - url: http://prometheus:9090/api/v1/write
- send_exemplars: true
- storage:
- trace:
- backend: local
- wal:
- path: /tmp/tempo/wal
- local:
- path: /tmp/tempo/blocks
- overrides:
- metrics_generator_processors: [service-graphs, span-metrics]
|