YAML · 1247 bytes Raw Blame History
1 auth_enabled: false
2
3 server:
4 http_listen_port: 3100
5 grpc_listen_port: 9096
6
7 common:
8 path_prefix: /loki
9 storage:
10 filesystem:
11 chunks_directory: /loki/chunks
12 rules_directory: /loki/rules
13 replication_factor: 1
14 ring:
15 instance_addr: 127.0.0.1
16 kvstore:
17 store: inmemory
18
19 schema_config:
20 configs:
21 - from: 2020-10-24
22 store: boltdb-shipper
23 object_store: filesystem
24 schema: v11
25 index:
26 prefix: index_
27 period: 24h
28
29 storage_config:
30 boltdb_shipper:
31 active_index_directory: /loki/boltdb-shipper-active
32 cache_location: /loki/boltdb-shipper-cache
33 shared_store: filesystem
34 filesystem:
35 directory: /loki/chunks
36
37 compactor:
38 working_directory: /loki/boltdb-shipper-compactor
39 shared_store: filesystem
40
41 limits_config:
42 reject_old_samples: true
43 reject_old_samples_max_age: 168h
44 ingestion_rate_mb: 16
45 ingestion_burst_size_mb: 32
46
47 chunk_store_config:
48 max_look_back_period: 0s
49
50 table_manager:
51 retention_deletes_enabled: false
52 retention_period: 0s
53
54 ruler:
55 storage:
56 type: local
57 local:
58 directory: /loki/rules
59 rule_path: /loki/rules
60 alertmanager_url: http://alertmanager:9093
61 ring:
62 kvstore:
63 store: inmemory
64 enable_api: true