-
Notifications
You must be signed in to change notification settings - Fork 4
/
spec
160 lines (122 loc) · 4.3 KB
/
spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
---
name: loki
templates:
bin/loki_ctl: bin/loki_ctl
config/config.yml.erb: config/config.yml
http/certs/ca.pem.erb: http/certs/ca.pem
http/certs/cert.pem.erb: http/certs/cert.pem
http/certs/cert.key.erb: http/certs/cert.key
grpc/certs/ca.pem.erb: grpc/certs/ca.pem
grpc/certs/cert.pem.erb: grpc/certs/cert.pem
grpc/certs/cert.key.erb: grpc/certs/cert.key
packages:
- loki
provides:
- name: loki
type: loki
properties:
loki.auth.enabled:
description: "Set to true to enable auth"
default: false
loki.server.http_listen_network:
description: "HTTP server listen network"
default: "tcp"
loki.server.http_listen_address:
description: "HTTP server listen address"
default: "0.0.0.0"
loki.server.http_listen_port:
description: "HTTP server listen port"
default: 3100
loki.server.http_listen_conn_limit:
description: "HTTP server listen connection limit"
default: 0
loki.server.grpc_listen_network:
description: "gRPC server listen network"
default: "tcp"
loki.server.grpc_listen_address:
description: "gRPC server listen address"
default: "0.0.0.0"
loki.server.grpc_listen_port:
description: "gRPC server listen port"
default: 9095
loki.server.grpc_listen_conn_limit:
description: "gRPC server listen connection limit"
default: 0
loki.index.storage:
description: "An index storage for Loki (tsdb, gcs, s3)"
default: tsdb
loki.object_store.storage:
description: "A object_store storage for Loki (filesystem, bigtable, dynamodb)"
default: filesystem
loki.index.v2.storage:
description: "An index storage for Loki (boltdb, gcs, s3)"
default: boltdb
loki.object_store.v2.storage:
description: "A object_store storage for Loki (filesystem, bigtable, dynamodb)"
default: filesystem
loki.compactor.compaction_interval:
description: "Specify the compactor compaction interval"
default: "10m"
loki.compactor.retention_enabled:
description: "Specify if the compactor retention is enabled"
default: true
loki.compactor.retention_delete_delay:
description: "Specify the compactor retention deletion delay"
default: "24h"
loki.compactor.retention_delete_worker_count:
description: "Specify the compactor retention deletion worker count"
default: 150
loki.compactor.delete_request_store:
description: "Specify the compactor deletion request store"
default: "filesystem"
loki.validation.allow_structured_metadata:
description: "Enforce every sample has a structured metadata"
default: false
loki.validation.reject_old_samples:
description: "Reject old samples"
default: false
loki.validation.reject_old_samples_max_age:
description: "Reject old samples max age"
default: ""
loki.validation.retention_period:
description: "Max retention period for the config limits needs to be a duration in string format that can be parsed using time.Duration"
default: "672h"
loki.retention.period:
description: "Retention period needs to be a duration in string format that can be parsed using time.Duration"
default: "168h"
loki.http.tls:
description: "Specify if tls for http should be used"
default: false
loki.http.mtls:
description: "Specify if mTLS for http should be used"
default: false
loki.http.client_auth_type:
description: "Specify the used client auth type in case of mTLS for http"
default: "RequireAndVerifyClientCert"
loki.http.cert.ca:
description: "Specify the ca cert for http"
default: ""
loki.http.cert.crt:
description: "Specify the client cert for http"
default: ""
loki.http.cert.key:
description: "Specify the client key for http"
default: ""
loki.grpc.tls:
description: "Specify if tls for gRPC should be used"
default: false
loki.grpc.mtls:
description: "Specify if mTLS for gRPC should be used"
default: false
loki.grpc.client_auth_type:
description: "Specify the used client auth type in case of mTLS for gRPC"
default: "RequireAndVerifyClientCert"
loki.grpc.cert.ca:
description: "Specify the ca cert for gRPC"
default: ""
loki.grpc.cert.crt:
description: "Specify the client cert for gRPC"
default: ""
loki.grpc.cert.key:
description: "Specify the client key for gRPC"
default: ""