Product Selector

Fusion 5.12
    Fusion 5.12

    Helm Chart for Preconfigured Monitoring Stack

    Prerequisites

    1. Clone the fusion-cloud-native repository: git clone https://github.com/lucidworks/fusion-cloud-native

    2. Navigate to the fusion-monitoring-stack directory:

      cd monitoring/helm/fusion-monitoring-stack
    3. Remain in this directory to run the Helm commands included below.

    Fusion Monitoring-Stack Helm Chart

    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.