26 lines
630 B
YAML
26 lines
630 B
YAML
auth_enabled: false
|
|
server:
|
|
http_listen_port: 3100
|
|
grpc_listen_port: 9095
|
|
common:
|
|
instance_addr: 127.0.0.1
|
|
path_prefix: /loki
|
|
storage:
|
|
filesystem:
|
|
chunks_directory: /loki/chunks
|
|
rules_directory: /loki/rules
|
|
schema_config:
|
|
configs:
|
|
- store: filesystem
|
|
schema: v13 # <--- DIESE ZEILE HAT GEFEHLT!
|
|
index:
|
|
prefix: index_
|
|
period: 24h
|
|
limits_config:
|
|
reject_old_samples: true
|
|
reject_old_samples_max_age: 168h
|
|
chunk_store_config:
|
|
# max_look_back_period wurde entfernt und ist hier nicht mehr gültig
|
|
table_manager:
|
|
retention_deletes_enabled: false
|
|
retention_period: 0s |