Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Yuri Shkuro <github@ysh.us>
  • Loading branch information
yurishkuro committed Jul 15, 2024
1 parent c15663f commit d2c1725
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
- name: 'Checkout Repository'
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: 'Dependency Review'
uses: actions/dependency-review-action@5a2ce3f5b92ee19cbb1541a4984c76d921601d7c # v4.3.4
uses: actions/dependency-review-action@72eb03d02c7872a771aacd928f3123ac62ad6d3a # v4.3.3
20 changes: 11 additions & 9 deletions cmd/jaeger/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -58,4 +60,4 @@ processors:

exporters:
jaeger_storage_exporter:
trace_storage: memstore
trace_storage: some_store

0 comments on commit d2c1725

Please sign in to comment.