From e10c55561e3d195885bdc2a992c34255b60b8d82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jul 2024 15:39:55 -0400 Subject: [PATCH] Fix broken v2 config (#5747) Unfortunately, we don't seem to have CI validation for this config and it was broken since the recent config refactoring. --------- Signed-off-by: dependabot[bot] Signed-off-by: Yuri Shkuro Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Yuri Shkuro --- cmd/jaeger/config.yaml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/cmd/jaeger/config.yaml b/cmd/jaeger/config.yaml index e34fb2ff7d6..dba80824d2d 100644 --- a/cmd/jaeger/config.yaml +++ b/cmd/jaeger/config.yaml @@ -14,23 +14,25 @@ extensions: # endpoint: 0.0.0.0:55679 jaeger_query: - trace_storage: memstore - trace_storage_archive: memstore_archive + trace_storage: some_store + trace_storage_archive: another_store ui_config: ./cmd/jaeger/config-ui.json jaeger_storage: - memory: - memstore: - max_traces: 100000 - memstore_archive: - max_traces: 100000 + backends: + some_store: + memory: + max_traces: 100000 + another_store: + memory: + max_traces: 100000 remote_sampling: # You can either use file or adaptive sampling strategy in remote_sampling # file: # path: ./cmd/jaeger/sampling-strategies.json adaptive: - sampling_store: memstore + sampling_store: some_store initial_sampling_probability: 0.1 http: grpc: @@ -58,4 +60,4 @@ processors: exporters: jaeger_storage_exporter: - trace_storage: memstore + trace_storage: some_store