File tree 2 files changed +64
-0
lines changed
2 files changed +64
-0
lines changed Original file line number Diff line number Diff line change
1
+ auth_enabled : false
2
+
3
+ server :
4
+ http_listen_port : ${LOKI_PORT}
5
+
6
+ ingester :
7
+ wal :
8
+ enabled : true
9
+ dir : /var/lib/loki/wal
10
+ lifecycler :
11
+ address : 127.0.0.1
12
+ ring :
13
+ kvstore :
14
+ store : inmemory
15
+ replication_factor : 1
16
+
17
+ compactor :
18
+ working_directory : /var/lib/loki/compactor
19
+ shared_store : filesystem
20
+
21
+ schema_config :
22
+ configs :
23
+ - from : 2022-10-24
24
+ store : boltdb-shipper
25
+ object_store : filesystem
26
+ schema : v11
27
+ index :
28
+ prefix : index_
29
+ period : 24h
30
+
31
+ storage_config :
32
+ boltdb_shipper :
33
+ active_index_directory : /var/lib/loki/index
34
+ shared_store : filesystem
35
+ cache_location : /var/lib/loki/cache
36
+
37
+ limits_config :
38
+ reject_old_samples : true
39
+ reject_old_samples_max_age : 168h
40
+
41
+ chunk_store_config :
42
+ max_look_back_period : 0s
43
+
44
+ table_manager :
45
+ retention_deletes_enabled : false
46
+ retention_period : 0s
Original file line number Diff line number Diff line change
1
+ server :
2
+ http_listen_port : ${PROMTAIL_PORT}
3
+
4
+ positions :
5
+ filename : /tmp/positions.yaml
6
+
7
+ clients :
8
+ - url : http://loki:3100/loki/api/v1/push
9
+
10
+ scrape_configs :
11
+ - job_name : " docker-logs"
12
+ docker_sd_configs :
13
+ - host : unix:///var/run/docker.sock
14
+ refresh_interval : 5s
15
+ relabel_configs :
16
+ - source_labels : [__meta_docker_container_name]
17
+ regex : " /(.*)"
18
+ target_label : container
You can’t perform that action at this time.
0 commit comments