diff --git a/config/prometheus.yaml b/config/prometheus.yaml index ed036178da..574c9dcce7 100644 --- a/config/prometheus.yaml +++ b/config/prometheus.yaml @@ -20,14 +20,6 @@ rule_files: # Here it's Prometheus itself. scrape_configs: # The job name is added as a label `job=` 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" # metrics_path defaults to '/metrics' diff --git a/config/tempo.yaml b/config/tempo.yaml index f3e573a2bb..679d6431f5 100644 --- a/config/tempo.yaml +++ b/config/tempo.yaml @@ -24,15 +24,13 @@ storage: backend: local # backend configuration to use block: 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 - encoding: zstd # block encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2 + v2_index_downsample_bytes: 1000 # number of bytes per index record + v2_encoding: zstd # block encoding/compression. options: none, gzip, lz4-64k, lz4-256k, lz4-1M, lz4, snappy, zstd, s2 wal: 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: path: /tmp/tempo/blocks pool: max_workers: 100 # worker pool determines the number of parallel requests to the object store backend queue_depth: 10000 - -search_enabled: true