k8s:部署Prometheus与Grafana
作者:互联网
部署
在k8s中部署prometheus和grafana
,推荐使用kube-prometheus-stack
快速搭建prometheus
生态。
官方helm地址:https://artifacthub.io/packages/helm/prometheus-community/kube-prometheus-stack
charts下载
前置环境
Kubernetes 1.16+
Helm 3+
执行:
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
#下载charts
helm pull prometheus-community/kube-prometheus-stack --version 36.2.0
tar -xvf kube-prometheus-stack-36.2.0.tgz
cd kube-prometheus-stack
所有的配置在values.yaml
文件中,可根据需要自行修改.
修改镜像:
vi charts/kube-state-metrics/values.yaml
#改成我的镜像
#registry.cn-hangzhou.aliyuncs.com/wenjie-k8s-image/kube-state-metrics
kubectl create ns monitor
#安装
helm install -f values.yaml prometheus-stack ./ -n monitor
确保所有pod运行成功:
kubectl get pod -n monitor
查看svc:
我这里为了方便已经修改svc prometheus-stack-grafana
和prometheus-stack-kube-prom-prometheus
的type为NodePort
。
实际工作中可以部署ingress或者一些其他的网关暴露服务。
kubectl get svc -n monitor
访问grafana
:192.168.1.121:32599 ,默认账号密码 admin/prom-operator
访问prometheus
:192.168.1.121:30090
使用Prometheus+Grafana监控k8s集群
可以去grafana官方网站上找自己需要监控的中间件、服务等等,然后直接复制出对应的id
官网地址:https://grafana.com/grafana/dashboards/?pg=hp&plcmt=lt-box-dashboards
然后点击import:
把对应的Grafana面板复制进去:
这里我复制了一个监控k8s集群的面板:能监控k8s节点、pod、svc、存储、流量等等。
标签:kube,prometheus,Grafana,Prometheus,grafana,helm,k8s,stack 来源: https://www.cnblogs.com/wwjj4811/p/16435527.html