File tree Expand file tree Collapse file tree 2 files changed +23
-3
lines changed
framework/observability/compose Expand file tree Collapse file tree 2 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ exporters:
1515 endpoint : " http://loki:3100/otlp"
1616 tls :
1717 insecure : true
18- otlp :
19- endpoint : " http:// tempo:4317"
18+ otlp/traces :
19+ endpoint : " tempo:4317"
2020 tls :
2121 insecure : true
2222 prometheus :
@@ -33,7 +33,7 @@ service:
3333 pipelines :
3434 traces :
3535 receivers : [otlp]
36- exporters : [debug, otlp]
36+ exporters : [debug, otlp/traces ]
3737 logs :
3838 receivers : [otlp]
3939 processors : [transform]
Original file line number Diff line number Diff line change @@ -8,6 +8,26 @@ distributor:
88 grpc :
99 http :
1010
11+ ingester :
12+ # maximum length of time before cutting a block
13+ # (default: 30m)
14+ max_block_duration : 10m
15+ # also cut a block if a trace is idle this long
16+ # (default: 10s)
17+ trace_idle_period : 1m
18+
19+ query_frontend :
20+ search :
21+ # query_backend_after and query_ingesters_until together control where the query-frontend searches for traces.
22+ # Time ranges before query_ingesters_until will be searched in the ingesters only.
23+ # Time ranges after query_backend_after will be searched in the backend/object storage only.
24+ # Time ranges from query_backend_after through query_ingesters_until will be queried from both locations.
25+ # query_backend_after must be less than or equal to query_ingesters_until.
26+ # (default: 15m)
27+ query_backend_after : 5m
28+ # (default: 30m)
29+ query_ingesters_until : 10m
30+
1131overrides :
1232 max_traces_per_user : 50000
1333
You can’t perform that action at this time.
0 commit comments