mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: Update the tempo devenv with the latest Tempo config changes (#61622)
* Update the tempo devenv with the latest Tempo config changes * Remove some settings to instead use the default values * Pin the Tempo image to the current latest version Co-authored-by: Hamas Shafiq <hamas.shafiq@grafana.com>
This commit is contained in:
parent
4167214e35
commit
81c35560a8
@ -67,7 +67,7 @@ services:
|
|||||||
logging: *default-logging
|
logging: *default-logging
|
||||||
|
|
||||||
tempo:
|
tempo:
|
||||||
image: grafana/tempo:latest
|
image: grafana/tempo:main-9a8474f
|
||||||
command:
|
command:
|
||||||
- --config.file=/etc/tempo.yaml
|
- --config.file=/etc/tempo.yaml
|
||||||
- --search.enabled=true
|
- --search.enabled=true
|
||||||
|
@ -18,11 +18,6 @@ distributor:
|
|||||||
grpc:
|
grpc:
|
||||||
opencensus:
|
opencensus:
|
||||||
|
|
||||||
ingester:
|
|
||||||
trace_idle_period: 10s # the length of time after a trace has not received spans to consider it complete and flush it
|
|
||||||
max_block_bytes: 1_000_000 # cut the head block when it hits this size or ...
|
|
||||||
max_block_duration: 5m # this much time passes
|
|
||||||
|
|
||||||
compactor:
|
compactor:
|
||||||
compaction:
|
compaction:
|
||||||
compaction_window: 1h # blocks in this time window will be compacted together
|
compaction_window: 1h # blocks in this time window will be compacted together
|
||||||
@ -41,26 +36,19 @@ metrics_generator:
|
|||||||
- url: http://prometheus:9090/api/v1/write
|
- url: http://prometheus:9090/api/v1/write
|
||||||
send_exemplars: true
|
send_exemplars: true
|
||||||
|
|
||||||
query_frontend:
|
|
||||||
search:
|
|
||||||
max_duration: 0 # allow searches >1h
|
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
trace:
|
trace:
|
||||||
backend: local # backend configuration to use
|
backend: local # backend configuration to use
|
||||||
block:
|
block:
|
||||||
bloom_filter_false_positive: .05 # bloom filter false positive rate. lower values create larger filters but fewer false positives
|
bloom_filter_false_positive: .05 # bloom filter false positive rate. lower values create larger filters but fewer false positives
|
||||||
index_downsample_bytes: 1000 # number of bytes per index record
|
v2_index_downsample_bytes: 1000 # number of bytes per index record
|
||||||
encoding: zstd # block encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2
|
v2_encoding: zstd # block encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2
|
||||||
version: vParquet
|
version: vParquet
|
||||||
wal:
|
wal:
|
||||||
path: /tmp/tempo/wal # where to store the the wal locally
|
path: /tmp/tempo/wal # where to store the the wal locally
|
||||||
encoding: snappy # wal encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2
|
v2_encoding: snappy # wal encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2
|
||||||
local:
|
local:
|
||||||
path: /tmp/tempo/blocks
|
path: /tmp/tempo/blocks
|
||||||
pool:
|
|
||||||
max_workers: 100 # worker pool determines the number of parallel requests to the object store backend
|
|
||||||
queue_depth: 10000
|
|
||||||
|
|
||||||
overrides:
|
overrides:
|
||||||
metrics_generator_processors: [service-graphs, span-metrics]
|
metrics_generator_processors: [service-graphs, span-metrics]
|
||||||
|
Loading…
Reference in New Issue
Block a user