| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- # Single-binary Loki — fits Phase 0 dogfood scale (one operator, low log
- # volume). Phase 4+ migration to a clustered Loki with object-storage
- # backend is documented in the README under "scale-out path".
- auth_enabled: false
- server:
- http_listen_port: 3100
- grpc_listen_port: 9095
- 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:
- retention_period: 30d
- ingestion_rate_mb: 8
- ingestion_burst_size_mb: 16
- reject_old_samples: true
- reject_old_samples_max_age: 168h
- compactor:
- working_directory: /loki/compactor
- compaction_interval: 10m
- retention_enabled: true
- delete_request_store: filesystem
- ruler:
- storage:
- type: local
- local:
- directory: /loki/rules
- rule_path: /loki/rules
- alertmanager_url: ''
- ring:
- kvstore:
- store: inmemory
- enable_api: true
|