Helm Chart for Preconfigured Monitoring Stack
Table of Contents
Prerequisites
-
Clone the
fusion-cloud-native
repository:git clone https://github.com/lucidworks/fusion-cloud-native
-
Navigate to the
fusion-monitoring-stack
directory:cd monitoring/helm/fusion-monitoring-stack
-
Remain in this directory to run the Helm commands included below.
Fusion Monitoring-Stack Helm Chart
Prerequisites
Make sure you have Helm installed: https://helm.sh/docs/using_helm/#installing-helm
Deploy Grafana, Prometheus Loki and Promtail to your Fusion cluster
Deploy with default config
helm upgrade --install monitoring .
Deploy in a custom namespace
helm upgrade --install monitoring --namespace=infrastructure .
Deploy with custom config
helm upgrade --install . grafana/loki-stack --set "key1=val1,key2=val2,..."
Deploy Grafana to your cluster
To get the admin password for the Grafana pod, run the following command:
kubectl get secret --namespace <YOUR-NAMESPACE> loki-grafana -o jsonpath="{.data.admin-password}" | base64 --decode ; echo
To access the Grafana UI, run the following command:
kubectl port-forward --namespace <YOUR-NAMESPACE> service/monitoring-grafana 3000:80
Navigate to http://localhost:3000 and login with admin
and the password output above.