mirror of
https://github.com/grafana/tempo.git
synced 2025-03-15 09:20:00 +00:00
* e2e tests: min_ready_duration set to 1 It reduces time for ingester to be ready That reduces the slowest step in e2e tests from 17 seconds to a couple of seconds * Refactoring: Move block flush sleep time to global * e2e test: Reduce complete_block_timeout * e2e tests: reduce block flush wait time * Parallelise slowest unit tests * Improve the slowest test by making it less heavy * Parallelise slow e2e test To achieve that, each test will have its own unique network name * Parallelise slow unit test * Revert "Parallelise slow unit test" This reverts commit b8266a642ba7fa9f620b2f81d00363c92ab14130. The optimisation does not have effect on CI
57 lines
1.2 KiB
YAML
57 lines
1.2 KiB
YAML
target: all
|
|
stream_over_http_enabled: true
|
|
|
|
server:
|
|
http_listen_port: 3200
|
|
|
|
query_frontend:
|
|
search:
|
|
query_backend_after: 0 # setting these both to 0 will force all range searches to hit the backend
|
|
query_ingesters_until: 0
|
|
|
|
distributor:
|
|
receivers:
|
|
jaeger:
|
|
protocols:
|
|
grpc:
|
|
endpoint: "tempo:14250"
|
|
otlp:
|
|
protocols:
|
|
grpc:
|
|
endpoint: "tempo:4317"
|
|
zipkin:
|
|
endpoint: "tempo:9411"
|
|
log_received_spans:
|
|
enabled: true
|
|
|
|
ingester:
|
|
lifecycler:
|
|
address: 127.0.0.1
|
|
ring:
|
|
kvstore:
|
|
store: inmemory
|
|
replication_factor: 1
|
|
final_sleep: 0s
|
|
min_ready_duration: 1s
|
|
trace_idle_period: 1s
|
|
max_block_duration: 5s
|
|
complete_block_timeout: 5s
|
|
flush_check_period: 1s
|
|
|
|
storage:
|
|
trace:
|
|
blocklist_poll: 1s
|
|
backend: local
|
|
local:
|
|
path: /var/tempo
|
|
pool:
|
|
max_workers: 10
|
|
queue_depth: 100
|
|
block:
|
|
version: "{{.Version}}"
|
|
parquet_dedicated_columns:
|
|
- {scope: resource, name: vulture-process-0, type: string }
|
|
- {scope: resource, name: vulture-process-1, type: string }
|
|
- {scope: span, name: vulture-0, type: string }
|
|
- {scope: span, name: vulture-1, type: string }
|