-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathvalues-alloy-deployment.yaml
More file actions
313 lines (260 loc) · 7.69 KB
/
values-alloy-deployment.yaml
File metadata and controls
313 lines (260 loc) · 7.69 KB
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
# Warning: there won't be any resource requests/limits for any grafana alloy-related container
---
fullnameOverride: grafana-alloy
controller:
type: deployment
replicas: 2
# Pod disruption budget for HA
podDisruptionBudget:
enabled: true
minAvailable: 1
alloy:
# Enable clustering for distributed scrape target allocation
clustering:
enabled: true
name: alloy-cluster
portName: http
# Extra ports for trace receivers
extraPorts:
- name: otlp-grpc
port: 4317
targetPort: 4317
protocol: TCP
- name: otlp-http
port: 4318
targetPort: 4318
protocol: TCP
- name: jaeger-compact
port: 6831
targetPort: 6831
protocol: UDP
- name: jaeger-binary
port: 6832
targetPort: 6832
protocol: UDP
- name: jaeger-http
port: 14268
targetPort: 14268
protocol: TCP
- name: jaeger-grpc
port: 14250
targetPort: 14250
protocol: TCP
- name: opencensus
port: 55678
targetPort: 55678
protocol: TCP
# Stability level for production components
# Options: "generally-available" (default), "public-preview", "experimental"
# Using "generally-available" for production stability
stabilityLevel: "generally-available"
# Storage path for WAL and other state
storagePath: /tmp/alloy
configMap:
create: true
content: |-
// Grafana Alloy Deployment Configuration
// Handles cluster-wide discovery and trace collection
//
// Prometheus Operator CRD Discovery
//
// Discover ServiceMonitor resources
prometheus.operator.servicemonitors "servicemonitors" {
forward_to = [prometheus.relabel.servicemonitors.receiver]
// Include all namespaces
namespaces = []
clustering {
enabled = true
}
}
// Add cluster label to ServiceMonitor metrics
prometheus.relabel "servicemonitors" {
forward_to = [prometheus.remote_write.central.receiver]
rule {
target_label = "cluster"
replacement = "remote-alloy"
}
// Drop metrics from mesh proxies to reduce cardinality
rule {
source_labels = ["namespace"]
regex = "^linkerd.*"
action = "drop"
}
}
// Discover PodMonitor resources
prometheus.operator.podmonitors "podmonitors" {
forward_to = [prometheus.relabel.podmonitors.receiver]
// Include all namespaces
namespaces = []
clustering {
enabled = true
}
}
// Add cluster label to PodMonitor metrics
prometheus.relabel "podmonitors" {
forward_to = [prometheus.remote_write.central.receiver]
rule {
target_label = "cluster"
replacement = "remote-alloy"
}
// Drop metrics from mesh proxies
rule {
source_labels = ["namespace"]
regex = "^linkerd.*"
action = "drop"
}
}
// Remote write to central Mimir
prometheus.remote_write "central" {
endpoint {
url = "http://mimir-distributor-lgtm-central.mimir.svc:8080/api/v1/push"
headers = {
"X-Scope-OrgID" = "remote02",
}
queue_config {
capacity = 10000
max_shards = 50
min_shards = 1
max_samples_per_send = 5000
batch_send_deadline = "5s"
retry_on_http_429 = true
}
}
// External labels applied to all metrics
external_labels = {
cluster = "remote-alloy",
}
}
//
// Kubernetes Events Collection
//
loki.source.kubernetes_events "cluster_events" {
job_name = "integrations/kubernetes/eventhandler"
log_format = "logfmt"
forward_to = [loki.process.events.receiver]
}
// Add cluster label to events
loki.process "events" {
stage.static_labels {
values = {
cluster = "remote-alloy",
}
}
forward_to = [loki.write.central.receiver]
}
// Write events to central Loki
loki.write "central" {
endpoint {
url = "http://loki-write-lgtm-central.loki.svc:3100/loki/api/v1/push"
tenant_id = "remote02"
// Retry configuration
max_backoff_period = "30s"
min_backoff_period = "1s"
max_backoff_retries = 10
}
external_labels = {
cluster = "remote-alloy",
}
}
//
// Trace Collection
//
// OTLP gRPC receiver (port 4317)
otelcol.receiver.otlp "default" {
grpc {
endpoint = "0.0.0.0:4317"
}
http {
endpoint = "0.0.0.0:4318"
}
output {
metrics = [otelcol.processor.batch.default.input]
logs = [otelcol.processor.batch.default.input]
traces = [otelcol.processor.batch.default.input]
}
}
// Jaeger receiver for legacy apps
otelcol.receiver.jaeger "default" {
protocols {
grpc {
endpoint = "0.0.0.0:14250"
}
thrift_http {
endpoint = "0.0.0.0:14268"
}
thrift_binary {
endpoint = "0.0.0.0:6832"
}
thrift_compact {
endpoint = "0.0.0.0:6831"
}
}
output {
traces = [otelcol.processor.batch.default.input]
}
}
// OpenCensus receiver (for Linkerd)
otelcol.receiver.opencensus "default" {
endpoint = "0.0.0.0:55678"
output {
metrics = [otelcol.processor.batch.default.input]
traces = [otelcol.processor.batch.default.input]
}
}
// Batch processor for efficient forwarding
otelcol.processor.batch "default" {
timeout = "5s"
send_batch_size = 1000
send_batch_max_size = 1500
output {
metrics = [otelcol.exporter.otlp.tempo.input]
logs = [otelcol.exporter.otlp.tempo.input]
traces = [otelcol.exporter.otlp.tempo.input]
}
}
// Export to central Tempo
otelcol.exporter.otlp "tempo" {
client {
endpoint = "tempo-distributor-lgtm-central.tempo.svc:4317"
tls {
insecure = true
}
headers = {
"X-Scope-OrgID" = "remote02",
}
}
retry_on_failure {
enabled = true
initial_interval = "1s"
max_interval = "30s"
max_elapsed_time = "5m"
}
}
rbac:
create: true
# Rules for ServiceMonitor/PodMonitor discovery
rules:
- apiGroups: [""]
resources: ["nodes", "nodes/proxy", "nodes/metrics", "services", "endpoints", "pods", "events"]
verbs: ["get", "list", "watch"]
- apiGroups: ["monitoring.coreos.com"]
resources: ["servicemonitors", "podmonitors"]
verbs: ["get", "list", "watch"]
- apiGroups: ["discovery.k8s.io"]
resources: ["endpointslices"]
verbs: ["get", "list", "watch"]
- apiGroups: ["networking.k8s.io"]
resources: ["ingresses"]
verbs: ["get", "list", "watch"]
serviceAccount:
create: true
name: grafana-alloy-deployment
service:
enabled: true
type: ClusterIP
annotations: {}
serviceMonitor:
enabled: true
additionalLabels:
release: monitor
interval: 30s