You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.next.asciidoc
+1
Original file line number
Diff line number
Diff line change
@@ -302,6 +302,7 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff]
302
302
- Disable event normalization for netflow input {pull}40635[40635]
303
303
- Allow attribute selection in the Active Directory entity analytics provider. {issue}40482[40482] {pull}40662[40662]
304
304
- Improve error quality when CEL program does not correctly return an events array. {pull}40580[40580]
305
+
- Add `use_kubeadm` config option for filebeat (both filbeat.input and autodiscovery) in order to toggle kubeadm-config api requests {pull}40301[40301]
Copy file name to clipboardexpand all lines: filebeat/_meta/config/filebeat.autodiscover.reference.yml.tmpl
+24
Original file line number
Diff line number
Diff line change
@@ -14,3 +14,27 @@
14
14
# - type: container
15
15
# paths:
16
16
# - /var/log/containers/*.log
17
+
18
+
#Example: for kubernetes container logs autodiscovery
19
+
# filebeat.autodiscover:
20
+
# providers:
21
+
# - type: kubernetes
22
+
# node: ${NODE_NAME}
23
+
# hints.enabled: true
24
+
# # By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
Copy file name to clipboardexpand all lines: filebeat/filebeat.reference.yml
+24
Original file line number
Diff line number
Diff line change
@@ -1219,6 +1219,30 @@ filebeat.inputs:
1219
1219
# paths:
1220
1220
# - /var/log/containers/*.log
1221
1221
1222
+
#Example: for kubernetes container logs autodiscovery
1223
+
# filebeat.autodiscover:
1224
+
# providers:
1225
+
# - type: kubernetes
1226
+
# node: ${NODE_NAME}
1227
+
# hints.enabled: true
1228
+
# # By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
1244
+
# use_kubeadm: true
1245
+
1222
1246
# ========================== Filebeat global options ===========================
1223
1247
1224
1248
# Registry data path. If a relative path is used, it is considered relative to the
`kube_config`:: (Optional) Use given config file as configuration for Kubernetes
154
154
client. It defaults to `KUBECONFIG` environment variable if present.
155
+
`use_kubeadm`:: (Optional) Default true. By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
155
156
`kube_client_options`:: (Optional) Additional options can be configured for Kubernetes
156
157
client. Currently client QPS and burst are supported, if not set Kubernetes client's
157
158
https://pkg.go.dev/k8s.io/client-go/rest#pkg-constants[default QPS and burst] will be used.
Copy file name to clipboardexpand all lines: metricbeat/docs/modules/kubernetes.asciidoc
+14
Original file line number
Diff line number
Diff line change
@@ -235,6 +235,8 @@ metricbeat.modules:
235
235
# If kube_config is not set, KUBECONFIG environment variable will be checked
236
236
# and if not present it will fall back to InCluster
237
237
#kube_config: ~/.kube/config
238
+
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
239
+
use_kubeadm: true
238
240
#include_labels: []
239
241
#exclude_labels: []
240
242
#include_annotations: []
@@ -286,6 +288,8 @@ metricbeat.modules:
286
288
# If kube_config is not set, KUBECONFIG environment variable will be checked
287
289
# and if not present it will fall back to InCluster
288
290
#kube_config: ~/.kube/config
291
+
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
292
+
use_kubeadm: true
289
293
#include_labels: []
290
294
#exclude_labels: []
291
295
#include_annotations: []
@@ -326,6 +330,8 @@ metricbeat.modules:
326
330
# If kube_config is not set, KUBECONFIG environment variable will be checked
327
331
# and if not present it will fall back to InCluster
328
332
#kube_config: ~/.kube/config
333
+
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
356
+
use_kubeadm: true
349
357
350
358
# Kubernetes proxy server
351
359
# (when running metricbeat locally at hosts or as a daemonset + host network)
@@ -355,6 +363,8 @@ metricbeat.modules:
355
363
- proxy
356
364
hosts: ["localhost:10249"]
357
365
period: 10s
366
+
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
367
+
use_kubeadm: true
358
368
359
369
# Kubernetes controller manager
360
370
# (URL and deployment method should be adapted to match the controller manager deployment / service / endpoint)
@@ -364,6 +374,8 @@ metricbeat.modules:
364
374
- controllermanager
365
375
hosts: ["http://localhost:10252"]
366
376
period: 10s
377
+
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
378
+
use_kubeadm: true
367
379
368
380
# Kubernetes scheduler
369
381
# (URL and deployment method should be adapted to match scheduler deployment / service / endpoint)
@@ -373,6 +385,8 @@ metricbeat.modules:
373
385
- scheduler
374
386
hosts: ["localhost:10251"]
375
387
period: 10s
388
+
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
389
+
use_kubeadm: true
376
390
----
377
391
378
392
This module supports TLS connections when using `ssl` config field, as described in <<configuration-ssl>>.
Copy file name to clipboardexpand all lines: metricbeat/metricbeat.reference.yml
+14
Original file line number
Diff line number
Diff line change
@@ -522,6 +522,8 @@ metricbeat.modules:
522
522
# If kube_config is not set, KUBECONFIG environment variable will be checked
523
523
# and if not present it will fall back to InCluster
524
524
#kube_config: ~/.kube/config
525
+
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
526
+
use_kubeadm: true
525
527
#include_labels: []
526
528
#exclude_labels: []
527
529
#include_annotations: []
@@ -573,6 +575,8 @@ metricbeat.modules:
573
575
# If kube_config is not set, KUBECONFIG environment variable will be checked
574
576
# and if not present it will fall back to InCluster
575
577
#kube_config: ~/.kube/config
578
+
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
579
+
use_kubeadm: true
576
580
#include_labels: []
577
581
#exclude_labels: []
578
582
#include_annotations: []
@@ -613,6 +617,8 @@ metricbeat.modules:
613
617
# If kube_config is not set, KUBECONFIG environment variable will be checked
614
618
# and if not present it will fall back to InCluster
615
619
#kube_config: ~/.kube/config
620
+
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
643
+
use_kubeadm: true
636
644
637
645
# Kubernetes proxy server
638
646
# (when running metricbeat locally at hosts or as a daemonset + host network)
@@ -642,6 +650,8 @@ metricbeat.modules:
642
650
- proxy
643
651
hosts: ["localhost:10249"]
644
652
period: 10s
653
+
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
654
+
use_kubeadm: true
645
655
646
656
# Kubernetes controller manager
647
657
# (URL and deployment method should be adapted to match the controller manager deployment / service / endpoint)
@@ -651,6 +661,8 @@ metricbeat.modules:
651
661
- controllermanager
652
662
hosts: ["http://localhost:10252"]
653
663
period: 10s
664
+
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
665
+
use_kubeadm: true
654
666
655
667
# Kubernetes scheduler
656
668
# (URL and deployment method should be adapted to match scheduler deployment / service / endpoint)
@@ -660,6 +672,8 @@ metricbeat.modules:
660
672
- scheduler
661
673
hosts: ["localhost:10251"]
662
674
period: 10s
675
+
#By default requests to kubeadm config map are made in order to enrich cluster name by requesting /api/v1/namespaces/kube-system/configmaps/kubeadm-config API endpoint.
0 commit comments