VEGAS/monitoring: update tempo config for new tempo version

This commit is contained in:
Max Headroom 2023-02-25 11:49:12 +01:00
parent fd4619b923
commit 4627b7e49b

View file

@ -4,8 +4,6 @@ let
inherit (config) links; inherit (config) links;
dataDir = "/srv/storage/private/tempo"; dataDir = "/srv/storage/private/tempo";
tempoConfig = { tempoConfig = {
search_enabled = true;
metrics_generator_enabled = true;
server = { server = {
http_listen_address = links.tempo.ipv4; http_listen_address = links.tempo.ipv4;
http_listen_port = links.tempo.port; http_listen_port = links.tempo.port;
@ -32,13 +30,8 @@ let
}; };
storage.trace = { storage.trace = {
backend = "local"; backend = "local";
block = { block.bloom_filter_false_positive = 0.05;
bloom_filter_false_positive = 0.05;
index_downsample_bytes = 1000;
encoding = "zstd";
};
wal.path = "${dataDir}/wal"; wal.path = "${dataDir}/wal";
wal.encoding = "snappy";
local.path = "${dataDir}/blocks"; local.path = "${dataDir}/blocks";
pool = { pool = {
max_workers = 16; max_workers = 16;