:latest images (loki 3.7.3/go1.26.4, presumably grafana/alloy too) reset every TCP connection on this host — kernel is 5.16.7 (Fedora 35, EOL since 2023), too old for whatever the newer Go toolchains need. Confirmed via a disposable grafana/loki:2.9.8 test container: same config, same host, works cleanly. Pin all three images to older stable releases instead of chasing this again on every redeploy. Also fixes an unrelated config bug: instance_addr belongs directly under `common:`, not nested under `common.ring:` — the misplaced field was silently ignored, which didn't help but wasn't the actual cause.
50 lines
989 B
YAML
50 lines
989 B
YAML
auth_enabled: false
|
|
|
|
server:
|
|
http_listen_address: 0.0.0.0
|
|
http_listen_port: 3100
|
|
grpc_listen_address: 0.0.0.0
|
|
grpc_listen_port: 9096
|
|
log_level: info
|
|
|
|
common:
|
|
instance_addr: 127.0.0.1
|
|
path_prefix: /loki
|
|
storage:
|
|
filesystem:
|
|
chunks_directory: /loki/chunks
|
|
rules_directory: /loki/rules
|
|
replication_factor: 1
|
|
ring:
|
|
kvstore:
|
|
store: inmemory
|
|
|
|
schema_config:
|
|
configs:
|
|
- from: 2024-01-01
|
|
store: tsdb
|
|
object_store: filesystem
|
|
schema: v13
|
|
index:
|
|
prefix: index_
|
|
period: 24h
|
|
|
|
limits_config:
|
|
reject_old_samples: true
|
|
reject_old_samples_max_age: 168h
|
|
retention_period: 2160h # 90 days — adjust to taste, disk on this host is ~42GB free
|
|
max_query_series: 5000
|
|
|
|
compactor:
|
|
working_directory: /loki/compactor
|
|
compaction_interval: 10m
|
|
retention_enabled: true
|
|
retention_delete_delay: 2h
|
|
delete_request_store: filesystem
|
|
|
|
ruler:
|
|
storage:
|
|
type: local
|
|
local:
|
|
directory: /loki/rules
|