@@ -56,17 +56,45 @@ properties:
56
56
default: 0
57
57
58
58
loki.index.storage:
59
+ description: "An index storage for Loki (tsdb, gcs, s3)"
60
+ default: tsdb
61
+
62
+ loki.object_store.storage:
63
+ description: "A object_store storage for Loki (filesystem, bigtable, dynamodb)"
64
+ default: filesystem
65
+
66
+ loki.index.v2.storage:
59
67
description: "An index storage for Loki (boltdb, gcs, s3)"
60
68
default: boltdb
61
69
62
- loki.object_store.storage:
70
+ loki.object_store.v2. storage:
63
71
description: "A object_store storage for Loki (filesystem, bigtable, dynamodb)"
64
72
default: filesystem
65
73
66
- loki.validation.enforce_metric_name:
67
- description: "Enforce every sample has a metric name"
74
+ loki.compactor.compaction_interval:
75
+ description: "Specify the compactor compaction interval"
76
+ default: "10m"
77
+
78
+ loki.compactor.retention_enabled:
79
+ description: "Specify if the compactor retention is enabled"
68
80
default: true
69
81
82
+ loki.compactor.retention_delete_delay:
83
+ description: "Specify the compactor retention deletion delay"
84
+ default: "24h"
85
+
86
+ loki.compactor.retention_delete_worker_count:
87
+ description: "Specify the compactor retention deletion worker count"
88
+ default: 150
89
+
90
+ loki.compactor.delete_request_store:
91
+ description: "Specify the compactor deletion request store"
92
+ default: "filesystem"
93
+
94
+ loki.validation.allow_structured_metadata:
95
+ description: "Enforce every sample has a structured metadata"
96
+ default: false
97
+
70
98
loki.validation.reject_old_samples:
71
99
description: "Reject old samples"
72
100
default: false
@@ -75,6 +103,10 @@ properties:
75
103
description: "Reject old samples max age"
76
104
default: ""
77
105
106
+ loki.validation.retention_period:
107
+ description: "Max retention period for the config limits needs to be a duration in string format that can be parsed using time.Duration"
108
+ default: "672h"
109
+
78
110
loki.retention.period:
79
111
description: "Retention period needs to be a duration in string format that can be parsed using time.Duration"
80
112
default: "168h"
0 commit comments