Skip to content

Commit 8d2aab6

Browse files
Fix broken v2 config (jaegertracing#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] <[email protected]> Signed-off-by: Yuri Shkuro <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Yuri Shkuro <[email protected]>
1 parent 2151acf commit 8d2aab6

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

cmd/jaeger/config.yaml

+11-9
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,25 @@ extensions:
1414
# endpoint: 0.0.0.0:55679
1515

1616
jaeger_query:
17-
trace_storage: memstore
18-
trace_storage_archive: memstore_archive
17+
trace_storage: some_store
18+
trace_storage_archive: another_store
1919
ui_config: ./cmd/jaeger/config-ui.json
2020

2121
jaeger_storage:
22-
memory:
23-
memstore:
24-
max_traces: 100000
25-
memstore_archive:
26-
max_traces: 100000
22+
backends:
23+
some_store:
24+
memory:
25+
max_traces: 100000
26+
another_store:
27+
memory:
28+
max_traces: 100000
2729

2830
remote_sampling:
2931
# You can either use file or adaptive sampling strategy in remote_sampling
3032
# file:
3133
# path: ./cmd/jaeger/sampling-strategies.json
3234
adaptive:
33-
sampling_store: memstore
35+
sampling_store: some_store
3436
initial_sampling_probability: 0.1
3537
http:
3638
grpc:
@@ -58,4 +60,4 @@ processors:
5860

5961
exporters:
6062
jaeger_storage_exporter:
61-
trace_storage: memstore
63+
trace_storage: some_store

0 commit comments

Comments
 (0)