mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 04:04:55 +08:00
fix(config): fix Tempo config for Tempo 2.0 (#959)
This commit is contained in:
@ -20,14 +20,6 @@ rule_files:
|
|||||||
# Here it's Prometheus itself.
|
# Here it's Prometheus itself.
|
||||||
scrape_configs:
|
scrape_configs:
|
||||||
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
|
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
|
||||||
- job_name: "prometheus"
|
|
||||||
|
|
||||||
# metrics_path defaults to '/metrics'
|
|
||||||
# scheme defaults to 'http'.
|
|
||||||
|
|
||||||
static_configs:
|
|
||||||
- targets: ["otel-collector:8888"]
|
|
||||||
|
|
||||||
- job_name: "router"
|
- job_name: "router"
|
||||||
|
|
||||||
# metrics_path defaults to '/metrics'
|
# metrics_path defaults to '/metrics'
|
||||||
|
|||||||
@ -24,15 +24,13 @@ storage:
|
|||||||
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
|
||||||
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:
|
pool:
|
||||||
max_workers: 100 # worker pool determines the number of parallel requests to the object store backend
|
max_workers: 100 # worker pool determines the number of parallel requests to the object store backend
|
||||||
queue_depth: 10000
|
queue_depth: 10000
|
||||||
|
|
||||||
search_enabled: true
|
|
||||||
|
|||||||
Reference in New Issue
Block a user