您好,登錄后才能下訂單哦!
grafana官網地址
1.helm部署grafana
部署很簡單,見下
[root@k8s-node1 prometheus-grafana]# helm install stable/grafana --generate-name
NAME: grafana-1577432108
LAST DEPLOYED: Fri Dec 27 15:35:11 2019
NAMESPACE: default
STATUS: deployed
REVISION: 1
NOTES:
1. Get your 'admin' user password by running:
kubectl get secret --namespace default grafana-1577432108 -o jsonpath="{.data.admin-password}" | base64 --decode ; echo
2. The Grafana server can be accessed via port 80 on the following DNS name from within your cluster:
grafana-1577432108.default.svc.cluster.local
Get the Grafana URL to visit by running these commands in the same shell:
export POD_NAME=$(kubectl get pods --namespace default -l "app=grafana,release=grafana-1577432108" -o jsonpath="{.items[0].metadata.name}")
kubectl --namespace default port-forward $POD_NAME 3000
3. Login with the password from step 1 and the username: admin
#################################################################################
###### WARNING: Persistence is disabled!!! You will lose your data when #####
###### the Grafana pod is terminated. #####
#################################################################################
注意這條:
1. Get your 'admin' user password by running:
kubectl get secret --namespace default grafana-1577432108 -o jsonpath="{.data.admin-password}" | base64 --decode ; echo
服務起來了
[root@k8s-node1 ~]# kubectl get svc,pod |grep grafana
service/grafana-1577432108 ClusterIP 10.254.172.86 <none> 80/TCP 132m
pod/grafana-1577432108-65b987fdc6-dlhpb 1/1 Running 1 132m
2.配置web訪問
配置Ingress文件,讀取執行,然后做host解析即可通過grafana-server訪問web.
[root@k8s-node1 prometheus-grafana]# cat grafana-server-ingress.yaml
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: grafana-server
namespace: default
spec:
rules:
- host: grafana-server
http:
paths:
- path: /
backend:
serviceName: grafana-1577432108
servicePort: 80
3.登錄
看前面第1部的注意,登錄密碼通過那個提示來獲取.
[root@k8s-node1 prometheus-grafana]# kubectl get secret --namespace default grafana-1577432108 -o jsonpath="{.data.admin-password}" | base64 --decode ; echo
sLJq2G4tBSiJcEHSobRoRiDRbCNXxT5qASQJkzF6
用戶名是:admin
密碼是:sLJq2G4tBSiJcEHSobRoRiDRbCNXxT5qASQJkzF6登錄成功,圖示見下:
4.添加數據源
添加prometheus源
http url是prometheus service的地址
[root@k8s-node1 prometheus-grafana]# kubectl get svc |grep server
prometheus-1577263826-server ClusterIP 10.254.132.104 <none> 80/TCP 47h
保存配置.再點擊dashboard.
再import,就可以看到圖形界面了
5.選一個自己喜歡的想用的個性參數更多的界面
去grafana網站下載模板json文件導入即可.
監控節點模板
監控pod容器模板1
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。