Prometheus monitoring for the Flux control plane
Go to file
Matheus Pimenta 03a4b9143f
Merge pull request #60 from nourspace/patch-1
Updating OCIRepository version from v1beta2 to v1
2025-06-27 16:57:55 +01:00
.github/workflows Fix e2e timing out 2025-03-11 10:49:04 +00:00
clusters/test Refactor structure to conform to Flux bootstrap 2023-08-18 13:49:54 +03:00
monitoring Updating OCIRepository version from v1beta2 to v1 2025-06-27 16:47:18 +01:00
scripts Add e2e tests with Kubernetes Kind 2023-08-18 14:21:03 +03:00
.gitignore Initial commit 2023-08-02 16:28:01 +03:00
LICENSE Initial commit 2023-08-02 16:28:01 +03:00
README.md use modern loki chart (no loki-stack anymore) 2025-02-12 15:32:54 -05:00

README.md

flux2-monitoring-example

This repository is an example of how to make use of kube-prometheus-stack and loki to monitor Flux.

Components:

  • kube-state-metrics - generates metrics about the state of the Flux objects
  • Prometheus Operator - manages Prometheus clusters atop Kubernetes
  • Prometheus - collects and stores metrics from the Flux controllers and kube-state-metrics
  • Promtail - collects the logs from the Flux controllers
  • Loki - stores the logs collected by Promtail
  • Grafana dashboards - displays the Flux control plane resource usage, reconciliation stats and logs

Quickstart

Create a Kubernetes cluster

For a quick local test, you can use Kubernetes kind. Any other Kubernetes setup will work as well though.

Create a cluster called test with the kind CLI:

kind create cluster --name test

Fork the GitHub repository

In order to follow this guide you'll need a GitHub account and a personal access token that can create repositories (check all permissions under repo).

Add the GitHub PAT and username to your shell environment:

export GITHUB_TOKEN=<your-token>
export GITHUB_USER=<your-username>

Fork this repository on your personal account and clone it locally:

git clone https://github.com/${GITHUB_USER}/flux2-monitoring-example.git
cd flux2-monitoring-example

Bootstrap Flux

Install the Flux controllers on the test cluster:

flux bootstrap github \
    --owner=${GITHUB_USER} \
    --repository=flux2-monitoring-example \
    --branch=main \
    --personal \
    --path=clusters/test

Wait for Flux to deploy the monitoring stack with:

flux get kustomizations --watch

After Flux has finished reconciling, you can list the pods in the monitoring namespace with:

$ kubectl -n monitoring get po
NAME                                                        READY
kube-prometheus-stack-grafana-58977b8976-8557b              3/3
kube-prometheus-stack-kube-state-metrics-676657b78f-8w9pd   1/1
kube-prometheus-stack-operator-7467d457b7-4qzks             1/1
kube-prometheus-stack-prometheus-node-exporter-wcwds        1/1
loki-0                                                      2/2
loki-gateway-5669d46565-ldv9f                               1/1
loki-minio-0                                                1/1
prometheus-kube-prometheus-stack-prometheus-0               2/2
promtail-tg5f8                                              1/1

Accessing Grafana

To access Grafana, start port forward in a separate shell:

kubectl -n monitoring port-forward svc/kube-prometheus-stack-grafana  3000:80

Navigate to http://localhost:3000 in your browser and login with user admin and password flux.

Flux dashboards: