はじめに
あけましておめでとうございます。
まだまだインフラの基盤開発が終わりませんが、地道にやっていきたいと思います。
(インフラが専門ではないのですが、、)
今回はサーバーの監視ツールをPrometheusとGrafanaを使って構築していきたいと思います。GKE環境ではこの2つを簡単に導入できるようにマーケットプレイスが用意されていますのでこれを使って行います。
NameSpaceの作成
$ kubectl create namespace monitoring
defaultを汚したくないのでmonitoringネームスペースを作成します
サービスアカウントを作成する
$ kubectl create serviceaccount --namespace monitoring prometheus
このアカウントをprometheus監視用にします
ClusterRoleを作成して、サービスアカウントと紐づける
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: prometheus
rules:
- apiGroups:
- ""
resources:
- nodes
- nodes/proxy
- services
- endpoints
- pods
- ingresses
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
- configmaps
verbs:
- get
- apiGroups:
- "extensions"
resources:
- ingresses/status
- ingresses
verbs:
- get
- list
- watch
- nonResourceURLs:
- "/metrics"
verbs:
- get
---
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRoleBinding
metadata:
name: prometheus
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: prometheus
subjects:
- kind: ServiceAccount
name: prometheus
namespace: monitoring
確認しておく
$ kubectl describe serviceaccounts prometheus -n=monitoring
Name: prometheus
Namespace: monitoring
Labels: <none>
Annotations: <none>
Image pull secrets: <none>
Mountable secrets: prometheus-token-******
Tokens: prometheus-token-******
Events: <none>
$ kubectl get clusterroles
NAME AGE
~ skip
prometheus 2h
$ kubectl describe clusterroles prometheus
Name: prometheus
Labels: <none>
Annotations: kubectl.kubernetes.io/last-applied-configuration={"apiVersion":"rbac.authorization.k8s.io/v1beta1","kind":"ClusterRole","metadata":{"annotations":{},"name":"prometheus","namespace":""},"rules":[{"apiG...
PolicyRule:
Resources Non-Resource URLs Resource Names Verbs
--------- ----------------- -------------- -----
endpoints [] [] [get list watch]
nodes [] [] [get list watch]
nodes/proxy [] [] [get list watch]
pods [] [] [get list watch]
services [] [] [get list watch]
ingresses.extensions [] [] [get list watch create]
[/metrics] [] [get]
$ kubectl describe clusterrolebindings prometheus
Name: prometheus
Labels: <none>
Annotations: kubectl.kubernetes.io/last-applied-configuration={"apiVersion":"rbac.authorization.k8s.io/v1beta1","kind":"ClusterRoleBinding","metadata":{"annotations":{},"name":"prometheus","namespace":""},"roleRef...
Role:
Kind: ClusterRole
Name: prometheus
Subjects:
Kind Name Namespace
---- ---- ---------
ServiceAccount prometheus monitoring
問題なさそうですね
GKEのマーケットプレイスからインストール
Prometheus & Grafanaををクリックして必要情報を入力
デプロイボタンを押せば作成されます。
ノードが1台だとprometheus-alertmanagerに文句言われる(多分)ますが一回シカトします。
構築には20分程度かかりますので気長に待ちます
早速接続してみる
port-forwardコマンドを打つ
$ kubectl port-forward --namespace monitoring prometheus-grafana-0 3000
そうすると
http://localhost:3000/ でアクセスできるようになります
初期ログインアカウントとパスワードはシークレットデータをプレビューして確認してください
正常にアクセスできたら成功です。
簡単に既存のGKE環境にPrometheus + Grafana環境を構築することができました
次回はダッシュボードを作成したいと思っています