Created
August 24, 2018 10:30
-
-
Save kierenj/61293824a7a35515bdb6fda3b2a69f91 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: metricbeat-config | |
namespace: kube-system | |
labels: | |
k8s-app: metricbeat | |
data: | |
metricbeat.yml: |- | |
metricbeat.config.modules: | |
# Mounted `metricbeat-daemonset-modules` configmap: | |
path: ${path.config}/modules.d/*.yml | |
# Reload module configs as they change: | |
reload.enabled: false | |
xpack.monitoring.enabled: true | |
setup.template: | |
name: "metricbeat" | |
path: "metricbeat.template.json" | |
pattern: "metricbeat-rr-stats-*" | |
settings: | |
index: | |
number_of_shards: 1 | |
number_of_replicas: 0 | |
processors: | |
- add_cloud_metadata: | |
cloud.id: ${ELASTIC_CLOUD_ID} | |
cloud.auth: ${ELASTIC_CLOUD_AUTH} | |
output.elasticsearch: | |
bulk_max_size: 5000 | |
index: "metricbeat-rr-stats-%{[beat.version]}-%{+yyyy.ww}" | |
--- | |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: metricbeat-daemonset-modules | |
namespace: kube-system | |
labels: | |
k8s-app: metricbeat | |
data: | |
system.yml: |- | |
- module: system | |
period: 10s | |
metricsets: | |
- cpu | |
- load | |
- memory | |
- network | |
- process | |
- process_summary | |
#- core | |
#- diskio | |
#- socket | |
processes: ['.*'] | |
process.include_top_n: | |
by_cpu: 5 # include top 5 processes by CPU | |
by_memory: 5 # include top 5 processes by memory | |
- module: system | |
period: 1m | |
metricsets: | |
- filesystem | |
- fsstat | |
processors: | |
- drop_event.when.regexp: | |
system.filesystem.mount_point: '^/(sys|cgroup|proc|dev|etc|host|lib)($|/)' | |
kubernetes.yml: |- | |
- module: docker | |
metricsets: | |
- container | |
- cpu | |
- diskio | |
- healthcheck | |
- info | |
- memory | |
- network | |
hosts: ["unix:///var/run/docker.sock"] | |
period: 10s | |
- module: kubernetes | |
metricsets: | |
- node | |
- system | |
- pod | |
- container | |
- volume | |
period: 10s | |
hosts: ["localhost:10255"] | |
--- | |
# Deploy a Metricbeat instance per node for node metrics retrieval | |
apiVersion: extensions/v1beta1 | |
kind: DaemonSet | |
metadata: | |
name: metricbeat | |
namespace: kube-system | |
labels: | |
k8s-app: metricbeat | |
spec: | |
template: | |
metadata: | |
labels: | |
k8s-app: metricbeat | |
spec: | |
serviceAccountName: metricbeat | |
terminationGracePeriodSeconds: 30 | |
hostNetwork: true | |
dnsPolicy: ClusterFirstWithHostNet | |
containers: | |
- name: metricbeat | |
image: docker.elastic.co/beats/metricbeat:6.3.2 | |
args: [ | |
"-c", "/etc/metricbeat.yml", | |
"-e", | |
"-system.hostfs=/hostfs", | |
] | |
env: | |
- name: ELASTIC_CLOUD_ID | |
value: "REDACTED" | |
- name: ELASTIC_CLOUD_AUTH | |
value: "REDACTED" | |
securityContext: | |
runAsUser: 0 | |
resources: | |
limits: | |
memory: 200Mi | |
requests: | |
cpu: 100m | |
memory: 100Mi | |
volumeMounts: | |
- name: config | |
mountPath: /etc/metricbeat.yml | |
readOnly: true | |
subPath: metricbeat.yml | |
- name: modules | |
mountPath: /usr/share/metricbeat/modules.d | |
readOnly: true | |
- name: dockersock | |
mountPath: /var/run/docker.sock | |
- name: proc | |
mountPath: /hostfs/proc | |
readOnly: true | |
- name: cgroup | |
mountPath: /hostfs/sys/fs/cgroup | |
readOnly: true | |
volumes: | |
- name: proc | |
hostPath: | |
path: /proc | |
- name: cgroup | |
hostPath: | |
path: /sys/fs/cgroup | |
- name: dockersock | |
hostPath: | |
path: /var/run/docker.sock | |
- name: config | |
configMap: | |
defaultMode: 0600 | |
name: metricbeat-config | |
- name: modules | |
configMap: | |
defaultMode: 0600 | |
name: metricbeat-daemonset-modules | |
- name: data | |
hostPath: | |
path: /var/lib/metricbeat-data | |
type: DirectoryOrCreate | |
--- | |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: metricbeat-deployment-modules | |
namespace: kube-system | |
labels: | |
k8s-app: metricbeat | |
data: | |
# This module requires `kube-state-metrics` up and running under `kube-system` namespace | |
kubernetes.yml: |- | |
- module: kubernetes | |
metricsets: | |
- state_node | |
- state_deployment | |
- state_replicaset | |
- state_pod | |
- state_container | |
# Uncomment this to get k8s events: | |
- event | |
period: 10s | |
hosts: ["kube-state-metrics:8080"] | |
--- | |
# Deploy singleton instance in the whole cluster for some unique data sources, like kube-state-metrics | |
apiVersion: apps/v1beta1 | |
kind: Deployment | |
metadata: | |
name: metricbeat | |
namespace: kube-system | |
labels: | |
k8s-app: metricbeat | |
spec: | |
template: | |
metadata: | |
labels: | |
k8s-app: metricbeat | |
spec: | |
serviceAccountName: metricbeat | |
hostNetwork: true | |
dnsPolicy: ClusterFirstWithHostNet | |
containers: | |
- name: metricbeat | |
image: docker.elastic.co/beats/metricbeat:6.3.2 | |
args: [ | |
"-c", "/etc/metricbeat.yml", | |
"-e", | |
] | |
env: | |
- name: ELASTIC_CLOUD_ID | |
value: "REDACTED" | |
- name: ELASTIC_CLOUD_AUTH | |
value: "REDACTED" | |
securityContext: | |
runAsUser: 0 | |
resources: | |
limits: | |
memory: 200Mi | |
requests: | |
cpu: 100m | |
memory: 100Mi | |
volumeMounts: | |
- name: config | |
mountPath: /etc/metricbeat.yml | |
readOnly: true | |
subPath: metricbeat.yml | |
- name: modules | |
mountPath: /usr/share/metricbeat/modules.d | |
readOnly: true | |
volumes: | |
- name: config | |
configMap: | |
defaultMode: 0600 | |
name: metricbeat-config | |
- name: modules | |
configMap: | |
defaultMode: 0600 | |
name: metricbeat-deployment-modules | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1beta1 | |
kind: ClusterRoleBinding | |
metadata: | |
name: metricbeat | |
subjects: | |
- kind: ServiceAccount | |
name: metricbeat | |
namespace: kube-system | |
roleRef: | |
kind: ClusterRole | |
name: metricbeat | |
apiGroup: rbac.authorization.k8s.io | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1beta1 | |
kind: ClusterRole | |
metadata: | |
name: metricbeat | |
labels: | |
k8s-app: metricbeat | |
rules: | |
- apiGroups: [""] | |
resources: | |
- nodes | |
- namespaces | |
- events | |
- pods | |
verbs: ["get", "list", "watch"] | |
- apiGroups: ["extensions"] | |
resources: | |
- deployments | |
- replicasets | |
verbs: ["get", "list", "watch"] | |
- apiGroups: ["apps"] | |
resources: | |
- statefulsets | |
verbs: ["get", "list", "watch"] | |
--- | |
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: metricbeat | |
namespace: kube-system | |
labels: | |
k8s-app: metricbeat | |
--- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment