Monitoring Scalar products on a Kubernetes cluster
This document explains how to deploy Prometheus Operator on Kubernetes with Helm. After following this document, you can use Prometheus, Alertmanager, and Grafana for monitoring Scalar products on your Kubernetes environment.
If you use a managed Kubernetes cluster and you want to use the cloud service features for monitoring and logging, please refer to the following document.
Prerequisites
- Create a Kubernetes cluster.
- Create a Bastion server and set
kubeconfig
.
Add the prometheus-community helm repository
This document uses Helm for the deployment of Prometheus Operator.
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
Prepare a custom values file
Please get the sample file scalar-prometheus-custom-values.yaml for kube-prometheus-stack. For the monitoring of Scalar products, this sample file's configuration is recommended.
In this sample file, the Service resources are not exposed to access from outside of a Kubernetes cluster. If you want to access dashboards from outside of your Kubernetes cluster, you must set *.service.type
to LoadBalancer
or *.ingress.enabled
to true
.
Please refer to the following official document for more details on the configurations of kube-prometheus-stack.
Deploy Prometheus Operator
Scalar products assume the Prometheus Operator is deployed in the monitoring
namespace by default. So, please create the namespace monitoring
and deploy Prometheus Operator in the monitoring
namespace.
-
Create a namespace
monitoring
on Kubernetes.kubectl create namespace monitoring
-
Deploy the kube-prometheus-stack.
helm install scalar-monitoring prometheus-community/kube-prometheus-stack -n monitoring -f scalar-prometheus-custom-values.yaml
Check if the Prometheus Operator is deployed
If the Prometheus Operator (includes Prometheus, Alertmanager, and Grafana) pods are deployed properly, you can see the STATUS
is Running
using the kubectl get pod -n monitoring
command.
$ kubectl get pod -n monitoring
NAME READY STATUS RESTARTS AGE
alertmanager-scalar-monitoring-kube-pro-alertmanager-0 2/2 Running 0 55s
prometheus-scalar-monitoring-kube-pro-prometheus-0 2/2 Running 0 55s
scalar-monitoring-grafana-cb4f9f86b-jmkpz 3/3 Running 0 62s
scalar-monitoring-kube-pro-operator-865bbb8454-9ppkc 1/1 Running 0 62s
Deploy (or Upgrade) Scalar products using Helm Charts
-
To enable Prometheus monitoring for Scalar products, you must set
true
to the following configurations in the custom values file.- Configurations
*.prometheusRule.enabled
*.grafanaDashboard.enabled
*.serviceMonitor.enabled
Please refer to the following documents for more details on the custom values file of each Scalar product.
- Configurations
-
Deploy (or Upgrade) Scalar products using Helm Charts with the above custom values file.
Please refer to the following documents for more details on how to deploy/upgrade Scalar products.
How to access dashboards
When you set *.service.type
to LoadBalancer
or *.ingress.enabled
to true
, you can access dashboards via Service or Ingress of Kubernetes. The concrete implementation and access method depend on the Kubernetes cluster. If you use a managed Kubernetes cluster, please refer to the cloud provider's official document for more details.
- EKS
- AKS
Access the dashboard from your local machine (For testing purposes only / Not recommended in the production environment)
You can access each dashboard from your local machine using the kubectl port-forward
command.
-
Port forwarding to each service from your local machine.
-
Prometheus
kubectl port-forward -n monitoring svc/scalar-monitoring-kube-pro-prometheus 9090:9090
-
Alertmanager
kubectl port-forward -n monitoring svc/scalar-monitoring-kube-pro-alertmanager 9093:9093
-
Grafana
kubectl port-forward -n monitoring svc/scalar-monitoring-grafana 3000:3000
-
-
Access each Dashboard.
-
Prometheus
http://localhost:9090/
-
Alertmanager
http://localhost:9093/
-
Grafana
http://localhost:3000/
- Note:
- You can see the user and password of Grafana as follows.
-
user
kubectl get secrets scalar-monitoring-grafana -n monitoring -o jsonpath='{.data.admin-user}' | base64 -d
-
password
kubectl get secrets scalar-monitoring-grafana -n monitoring -o jsonpath='{.data.admin-password}' | base64 -d
-
- You can see the user and password of Grafana as follows.
- Note:
-