update grafana stack and increase max trace size
This commit is contained in:
parent
185eff9faa
commit
4f69eabc57
3 changed files with 13 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
||||||
services:
|
services:
|
||||||
otel-collector:
|
otel-collector:
|
||||||
image: otel/opentelemetry-collector-contrib:0.101.0
|
image: otel/opentelemetry-collector-contrib:0.104.0
|
||||||
command: "--config=/etc/otel-collector-config.yaml"
|
command: "--config=/etc/otel-collector-config.yaml"
|
||||||
volumes:
|
volumes:
|
||||||
- ./otel-collector/config.yaml:/etc/otel-collector-config.yaml
|
- ./otel-collector/config.yaml:/etc/otel-collector-config.yaml
|
||||||
|
@ -16,7 +16,7 @@ services:
|
||||||
- default
|
- default
|
||||||
|
|
||||||
pyroscope:
|
pyroscope:
|
||||||
image: grafana/pyroscope:1.5.0
|
image: grafana/pyroscope:1.6.1
|
||||||
expose:
|
expose:
|
||||||
- 4040
|
- 4040
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -27,7 +27,7 @@ services:
|
||||||
- default
|
- default
|
||||||
|
|
||||||
loki:
|
loki:
|
||||||
image: grafana/loki:3.0.0
|
image: grafana/loki:3.1.0
|
||||||
links:
|
links:
|
||||||
- mimir
|
- mimir
|
||||||
expose:
|
expose:
|
||||||
|
@ -47,7 +47,7 @@ services:
|
||||||
- mimir_data:/mimir
|
- mimir_data:/mimir
|
||||||
|
|
||||||
tempo:
|
tempo:
|
||||||
image: grafana/tempo:2.4.1
|
image: grafana/tempo:2.5.0
|
||||||
command: ["-config.file=/etc/tempo/config.yaml"]
|
command: ["-config.file=/etc/tempo/config.yaml"]
|
||||||
links:
|
links:
|
||||||
- mimir
|
- mimir
|
||||||
|
|
|
@ -19,12 +19,13 @@ limits_config:
|
||||||
allow_structured_metadata: true
|
allow_structured_metadata: true
|
||||||
retention_period: 90d
|
retention_period: 90d
|
||||||
otlp_config:
|
otlp_config:
|
||||||
log_attributes:
|
resource_attributes:
|
||||||
- action: index_label
|
attributes_config:
|
||||||
attributes:
|
- action: index_label
|
||||||
- component
|
attributes:
|
||||||
- function
|
- component
|
||||||
- endpoint
|
- function
|
||||||
|
- endpoint
|
||||||
|
|
||||||
query_range:
|
query_range:
|
||||||
results_cache:
|
results_cache:
|
||||||
|
|
|
@ -31,3 +31,5 @@ overrides:
|
||||||
defaults:
|
defaults:
|
||||||
metrics_generator:
|
metrics_generator:
|
||||||
processors: [service-graphs, span-metrics] # enables metrics generator
|
processors: [service-graphs, span-metrics] # enables metrics generator
|
||||||
|
global:
|
||||||
|
max_bytes_per_trace: 10000000
|
||||||
|
|
Loading…
Reference in a new issue