New to KubeDB? Please start here.
Cassandra Alerting with Prometheus
This tutorial shows you how to configure Prometheus-based alerting for a KubeDB-managed Cassandra cluster using the cassandra-alerts Helm chart. This chart also bundles a Grafana dashboard that it imports automatically through a post-install Job — no separate dashboard chart is required.
Before You Begin
Ensure you have a Kubernetes cluster and that
kubectlis configured to communicate with it. If you do not already have a cluster, you can create one using kind.Install the KubeDB operator by following the steps here.
Deploy the database in the
alert-casnamespace:$ kubectl create ns alert-cas namespace/alert-cas createdTo learn more about how Prometheus monitoring works with KubeDB, see the overview here.
You will also need a Grafana API key / token with Editor permission so the chart’s dashboard-import Job can push the dashboard. See Step 1 below.
Note: YAML files used in this tutorial are stored in docs/examples/cassandra folder in GitHub repository kubedb/docs.
Configuration
Step 1 (
kube-prometheus-stack) is required to follow this tutorial. Step 2 (Panopticon) is required for the Provisioner Group alerts below (KubeDBCassandraPhase...) — skip it only if you just want the exporter-based Database Group alerts. If you have already completed the step(s) you need in another guide, skip ahead.
Step 1: Deploy kube-prometheus-stack
kube-prometheus-stack installs Prometheus, Prometheus Operator, Alertmanager, and Grafana together. This is the recommended way to get the full monitoring stack on Kubernetes.
Add the prometheus-community Helm repo and install:
$ helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
$ helm repo update
$ helm upgrade --install prometheus prometheus-community/kube-prometheus-stack \
--namespace monitoring --create-namespace \
--set grafana.image.tag=7.5.5
Wait for all pods to be ready:
$ kubectl get pods -n monitoring
NAME READY STATUS RESTARTS AGE
alertmanager-prometheus-kube-prometheus-alertmanager-0 2/2 Running 0 2m
prometheus-grafana-xxxx 3/3 Running 0 2m
prometheus-kube-prometheus-operator-xxxx 1/1 Running 0 2m
prometheus-kube-prometheus-prometheus-0 2/2 Running 0 2m
prometheus-kube-state-metrics-xxxx 1/1 Running 0 2m
Find the serviceMonitorSelector/ruleSelector labels that Prometheus uses to pick up ServiceMonitor/PrometheusRule objects — this is the release: prometheus label used throughout this tutorial.
$ kubectl get prometheus -n monitoring -o jsonpath='{.items[0].spec.ruleSelector}'
{"matchLabels":{"release":"prometheus"}}
$ kubectl get prometheus -n monitoring -o jsonpath='{.items[0].spec.serviceMonitorSelector}'
{"matchLabels":{"release":"prometheus"}}
Step 2: Install Panopticon (required for the Provisioner Group alerts)
Panopticon is the Appscode operator that exports the KubeDB operator’s own view of every resource — kubedb_com_cassandra_status_phase and related metrics. It’s what powers the Provisioner Group alerts below (KubeDBCassandraPhaseNotReady/KubeDBCassandraPhaseCritical). Skip this step if you only need the exporter-based Database Group alerts.
$ helm repo add appscode https://charts.appscode.com/stable/
$ helm repo update
$ helm upgrade --install panopticon appscode/panopticon \
--version v2026.4.30 \
--namespace kubeops --create-namespace \
--set monitoring.enabled=true \
--set monitoring.agent=prometheus.io/operator \
--set monitoring.serviceMonitor.labels.release=prometheus \
--set-file license=/path/to/kubedb-license.txt \
--wait --timeout 5m0s
Verify Panopticon is running:
$ kubectl get pods -n kubeops
NAME READY STATUS RESTARTS AGE
panopticon-xxxx 1/1 Running 0 1m
Overview
- KubeDB deploys Cassandra with the JMX Exporter-based
exportersidecar container, which scrapes the Cassandra JVM’s JMX metrics and exposes them as Prometheus metrics on port8080. - Stats Service (named
{cassandra-name}-stats) is created automatically by KubeDB and fronts the exporter’s metrics endpoint on port56790, which is proxied to the exporter’s actual listening port8080inside the pod. - ServiceMonitor (named
{cassandra-name}-stats) is created automatically by KubeDB and tells Prometheus to scrape the exporter every 10 seconds. - PrometheusRule is created by the
cassandra-alertschart and contains all Cassandra alert definitions grouped by concern: database health and provisioner. - Dashboard-import Job — when
grafana.enabledistrue(defaultfalse), the chart also creates a one-shotJobthatPOSTs a bundled dashboard JSON straight to your Grafana instance’s/api/dashboards/importendpoint. - Prometheus Operator evaluates every rule expression every 30 seconds and fires matching alerts to AlertManager.
- AlertManager groups, inhibits, and silences alerts, then routes them to configured receivers (Slack, email, PagerDuty, webhook, etc.).
Deploy Cassandra with Monitoring Enabled
At first, let’s deploy a Cassandra cluster with monitoring enabled. Below is the Cassandra object we are going to create.
apiVersion: kubedb.com/v1alpha2
kind: Cassandra
metadata:
name: cas-alert-demo
namespace: alert-cas
spec:
version: 5.0.7
topology:
rack:
- name: r0
replicas: 2
storage:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storageType: Durable
deletionPolicy: WipeOut
monitor:
agent: "prometheus.io/operator"
prometheus:
serviceMonitor:
labels:
release: prometheus
interval: 10s
Here,
spec.topology.rack[].replicas: 2— Cassandra requires more than one replica per rack for its admission webhook to accept the object, so this demo uses the smallest allowed topology (1 rack, 2 replicas).spec.monitor.agent: prometheus.io/operatortells KubeDB to create aServiceMonitorresource managed by the Prometheus operator.spec.monitor.prometheus.serviceMonitor.labels.release: prometheusadds therelease: prometheuslabel to the createdServiceMonitor, matching the PrometheusserviceMonitorSelectorso the target is discovered automatically.
Let’s create the Cassandra resource.
$ kubectl apply -f https://github.com/kubedb/docs/raw/v2026.7.10/docs/examples/cassandra/monitoring/cas-alert-demo.yaml
cassandra.kubedb.com/cas-alert-demo created
Now, wait for the database to go into Ready state.
$ kubectl get cassandra -n alert-cas cas-alert-demo
NAME VERSION STATUS AGE
cas-alert-demo 5.0.7 Ready 5m
KubeDB brings up 2 rack pods:
$ kubectl get pods -n alert-cas
NAME READY STATUS RESTARTS AGE
cas-alert-demo-rack-r0-0 2/2 Running 0 5m
cas-alert-demo-rack-r0-1 2/2 Running 0 4m
KubeDB creates a dedicated stats service with the -stats suffix for monitoring.
$ kubectl get svc -n alert-cas --selector="app.kubernetes.io/instance=cas-alert-demo"
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
cas-alert-demo ClusterIP 10.43.120.17 <none> 9042/TCP,7000/TCP,7199/TCP,7001/TCP 5m
cas-alert-demo-rack-r0-pods ClusterIP None <none> 9042/TCP,7000/TCP,7199/TCP,7001/TCP 5m
cas-alert-demo-stats ClusterIP 10.43.90.186 <none> 56790/TCP 5m
KubeDB also creates a ServiceMonitor that tells Prometheus where to scrape.
$ kubectl get servicemonitor -n alert-cas
NAME AGE
cas-alert-demo-stats 5m
Verify that the ServiceMonitor carries the release: prometheus label so Prometheus discovers it.
$ kubectl get servicemonitor -n alert-cas cas-alert-demo-stats \
-o jsonpath='{.metadata.labels.release}'
prometheus
Step 1 — Create a Grafana API Key
The chart’s dashboard-import Job authenticates to Grafana with a bearer token, so create one first.
Grafana 9+: Administration → Service accounts → Add service account → role Editor → Add token. Copy the token.
Grafana 8.x and earlier (no Service Accounts UI, e.g. the bundled
kube-prometheus-stackGrafana 7.5.5 used while verifying this tutorial): use the legacy API Keys endpoint instead:# Port-forward Grafana $ kubectl port-forward -n monitoring svc/prometheus-grafana 3000:80& # Retrieve the admin password $ kubectl get secret -n monitoring prometheus-grafana \ -o jsonpath='{.data.admin-password}' | base64 -d && echo # Create a service account with Editor role $ curl -s -X POST -H "Content-Type: application/json" \ -u admin:<grafana_password> \ http://localhost:3000/api/serviceaccounts \ -d '{"name":"cas-alerts-demo","role":"Editor"}' # Note the returned "id" # Create a token for the service account (replace <id> with the returned service account ID) $ curl -s -X POST -H "Content-Type: application/json" \ -u admin:<grafana_password> \ http://localhost:3000/api/serviceaccounts/<id>/tokens \ -d '{"name":"cas-alerts-demo-key","secondsToLive":0}' # Note the returned "key" # Stop the port-forward $ kill %1
Either way, you end up with a bearer token to use as grafana.apikey below.
Step 2 — Install cassandra-alerts
The cassandra-alerts chart creates a PrometheusRule resource containing all Cassandra alert definitions, and (when grafana.enabled=true) a Job that imports a pre-built Grafana dashboard.
Why the Helm release name matters
The chart derives the PromQL job/instance scoping (and the PrometheusRule name) from the Helm release name, not from a values field — so the release name must match the Cassandra object’s name (cas-alert-demo) for the rules to be correctly scoped to this instance.
The chart’s default label is release: kube-prometheus-stack, so we must also override it at install time to match the Prometheus ruleSelector.
Install
$ helm upgrade -i cas-alert-demo /home/banusree/go/src/alerts/charts/cassandra-alerts \
-n alert-cas \
--set form.alert.labels.release=prometheus \
--set grafana.enabled=true \
--set grafana.url=http://prometheus-grafana.<grafana_namespace>.svc.cluster.local \
--set grafana.apikey=<grafana_apikey> \
--set form.alert.appSuffix=cas-grafana-demo
| Flag | Value | Purpose |
|---|---|---|
cas-alert-demo (release name) | — | Scopes every PromQL expression to this instance (job="cas-alert-demo-stats") |
-n alert-cas | alert-cas | Installs the PrometheusRule in the same namespace as the database |
form.alert.labels.release | prometheus | Matches the Prometheus ruleSelector so the rules are loaded |
form.alert.groups.database.rules.cassandraDown.val | 0 | Sets the threshold used by the CassandraDown alert expression |
grafana.url | in-cluster Grafana URL | The dashboard-import Job runs inside the cluster, so this must be a cluster-internal address, not localhost |
grafana.apikey | token from Step 1 | Authenticates the dashboard-import POST request |
grafana.jobName | cas-alert-demo-stats | Required — set this to your instance’s actual stats-service name so the dashboard’s panels show data. |
To install alerts only, without the dashboard, set
--set grafana.enabled=false.
Note: To re-run the dashboard import (e.g. after changing
grafana.jobName, or on ahelm upgrade), first delete the existing dashboard and Job:curl -s -X DELETE -H "Authorization: Bearer <token>" http://localhost:3000/api/dashboards/uid/<uid>andkubectl delete job -n alert-cas cas-alert-demo-post-job.
Verify the PrometheusRule is created
$ kubectl get prometheusrule -n alert-cas
NAME AGE
cas-alert-demo 30s
Confirm the release: prometheus label is present.
$ kubectl get prometheusrule -n alert-cas cas-alert-demo \
-o jsonpath='{.metadata.labels.release}'
prometheus
Verify the dashboard-import Job
$ kubectl get job -n alert-cas
NAME STATUS COMPLETIONS AGE
cas-alert-demo-post-job Complete 1/1 8s
$ kubectl logs -n alert-cas job/cas-alert-demo-post-job
{"pluginId":"","title":"kubedb.com / Cassandra / demo / cassandra","imported":true, ...}
A "imported":true response confirms the dashboard now exists in Grafana — under the literal title kubedb.com / Cassandra / demo / cassandra regardless of this instance’s real name/namespace (see the chart-limitation note above).
Confirm Prometheus loaded the rules
Port-forward the Prometheus UI and open the Status → Rule health page.
$ kubectl port-forward -n monitoring \
svc/prometheus-kube-prometheus-prometheus 9090:9090
Open http://localhost:9090/rules?search=cassandra.

Both the cassandra.database.alert-cas.cas-alert-demo.rules and cassandra.provisioner.alert-cas.cas-alert-demo.rules groups are visible with all rules showing OK, confirming that Prometheus has loaded and is evaluating the Cassandra alert definitions every 30 seconds.
Verify End-to-End
1. Check the exporter is running
The exporter sidecar inside the Cassandra pod scrapes JMX and serves metrics at :8080/metrics. A metric named java:lang:runtime:uptime confirms the exporter can reach the Cassandra JVM.
$ kubectl exec -n alert-cas cas-alert-demo-rack-r0-0 -c cassandra -- \
curl -s localhost:8080/metrics | grep 'name="java:lang:runtime:uptime"'
cassandra_stats{cluster="Test Cluster",datacenter="dc1",keyspace="",table="",name="java:lang:runtime:uptime",} 1867282.0
The
exportercontainer’s own image ships neithercurlnorwget, so the check above runs from thecassandracontainer instead — both containers share the pod’s network namespace, solocalhost:8080reaches the exporter’s HTTP server either way.
2. Check the Prometheus target is UP
Open http://localhost:9090/targets?search=cas-alert-demo.

The target serviceMonitor/alert-cas/cas-alert-demo-stats/0 shows 2 / 2 up, confirming metrics are being scraped from both cas-alert-demo-rack-r0-0 and cas-alert-demo-rack-r0-1 in the alert-cas namespace.
3. Confirm all Cassandra alerts are inactive
Open http://localhost:9090/alerts?search=cassandra to see the Cassandra alert groups.

All 6 rules in the cassandra.database group and both rules in the cassandra.provisioner group show INACTIVE, meaning the cluster is healthy and no thresholds are breached.
4. Check AlertManager
Port-forward AlertManager to view any currently firing alerts.
$ kubectl port-forward -n monitoring \
svc/prometheus-kube-prometheus-alertmanager 9093:9093
Open http://localhost:9093. With a healthy Cassandra cluster, no alerts for cas-alert-demo will be listed here.

5. Explore the Grafana dashboard
Port-forward Grafana and log in.
$ kubectl port-forward -n monitoring svc/prometheus-grafana 3000:80&
Open http://localhost:3000 and navigate to the dashboard kubedb.com / Cassandra / demo / cassandra that the Job imported in Step 2 (search doesn’t help here since the title never changes — see the chart-limitation note above; find it by dashboardId/uid from the Job’s log output if you have several).

The dashboard mirrors the alert groups: Cassandra Phase (Not Ready / Critical — shows “No data” here since this tutorial deploys to alert-cas, not demo) and Cassandra Server Status (Down, Service Respawn, Connection Timeout, Dropped Messages, High Read/Write Latency — all live and correctly scoped once grafana.jobName is set as shown above). To confirm the wiring is correct, cross-check the Cassandra Down panel against the Prometheus target/alert pages above rather than relying on the panel alone.
Simulating a Firing Alert
The previous section confirmed that all alerts are INACTIVE while the cluster is healthy. This section walks through deliberately triggering the CassandraDown critical alert so you can observe the full alert lifecycle — from firing in Prometheus through to the AlertManager dashboard — and then resolve it.
1. Stop the metrics endpoint
Unlike some other KubeDB charts, CassandraDown is not driven by a custom exporter-reported gauge — it is built directly on Prometheus’s own scrape-health metric, up{job="cas-alert-demo-stats"}. That metric only goes to 0 when Prometheus can no longer reach the scrape target’s HTTP endpoint at all.
On this build, the exporter’s HTTP server (the process actually scraped by Prometheus on port 8080) runs inside the exporter container — killing the cassandra container alone leaves the exporter’s HTTP endpoint reachable (Prometheus would keep scraping it successfully), so up would stay 1 and CassandraDown would never fire. To reproduce a real scrape failure, stop the exporter container’s process instead:
$ end=$(( $(date +%s) + 45 ))
while [ $(date +%s) -lt $end ]; do
kubectl exec -n alert-cas cas-alert-demo-rack-r0-0 -c exporter -- kill 1 >/dev/null 2>&1
sleep 1
done
Kubernetes restarts the crashed exporter container in the background. The restart is quick, so the outage window can be short — if the alert resolves before you finish inspecting it, repeat the kill 1 command a few times in a row; Kubernetes’ crash-loop backoff will keep the container down for a longer stretch on subsequent attempts, giving you a wider window to observe the firing state.
Wait 30–60 seconds for the next Prometheus scrape cycle (configured at 10s) and rule-evaluation cycle (30s) to register the failure.
2. Watch the alert fire in Prometheus
Open http://localhost:9090/alerts?search=cassandra.

Because CassandraDown has for: 0m (instant), it moves directly from INACTIVE to FIRING within one evaluation cycle, while the rest of the cassandra.database group stays INACTIVE.
3. Check the AlertManager dashboard
Open http://localhost:9093/#/alerts?filter={app_namespace="alert-cas"}.

AlertManager shows the CassandraDown alert. The alert card displays labels including:
- alertname:
CassandraDown - severity:
critical - app:
cas-alert-demo, app_namespace:alert-cas - job:
cas-alert-demo-stats
Note: this chart’s alert labels use
app_namespacerather than a plainnamespacelabel — filter or group onapp_namespacewhen searching for these alerts in AlertManager.
AlertManager routes this alert to every receiver configured in your alertmanagerConfig (Slack, email, PagerDuty, webhook, etc.) based on your routing tree. If no receiver is configured, the alert is visible here but silently dropped.
4. Restore Cassandra
Delete the pod so KubeDB recreates it cleanly.
$ kubectl delete pod -n alert-cas cas-alert-demo-rack-r0-1
Once the exporter’s /metrics endpoint is reachable again, Prometheus marks the alert INACTIVE and AlertManager sends a resolved notification to all receivers.
Alert Reference
All alerts are scoped to the cas-alert-demo instance in the alert-cas namespace via the PromQL label filters job="cas-alert-demo-stats" and app_namespace="alert-cas".
Database Group
Fired based on live metrics from the Cassandra JMX exporter.
| Alert | Severity | For | What It Means |
|---|---|---|---|
CassandraDown | critical | instant | The Prometheus scrape target for this instance is unreachable — the exporter’s metrics endpoint is down or the pod is unreachable. |
CassandraServiceRespawn | critical | instant | Cassandra restarted recently (JVM uptime < 180s). |
ConnectionTimeouts | warning | instant | More than 100 connection timeouts observed in the last minute. |
DroppedMessages | warning | instant | One or more internal Cassandra messages have been dropped — a sign of overload or backpressure. |
HighReadLatency | warning | instant | 99th-percentile coordinator read latency on the health-check table exceeds 7000 (µs). |
HighWriteLatency | warning | instant | 99th-percentile coordinator write latency on the health-check table exceeds 7000 (µs). |
Provisioner Group
Monitors the KubeDB operator’s view of the Cassandra resource phase.
| Alert | Severity | For | What It Means |
|---|---|---|---|
KubeDBCassandraPhaseNotReady | critical | 1m | KubeDB marked the Cassandra resource NotReady — the operator cannot reach the cluster. |
KubeDBCassandraPhaseCritical | warning | 5m | The instance is in a degraded/critical phase. |
Customising Alerts
To override thresholds or disable specific alert groups, create a custom values file and upgrade the chart.
# custom-alerts.yaml
form:
alert:
labels:
release: prometheus
groups:
database:
enabled: warning
rules:
cassandraDown:
enabled: true
duration: "0m"
val: 0
cassandraHighReadLatency:
enabled: true
duration: "1m"
val: 15000 # allow up to 15ms 99th-percentile read latency
severity: warning
provisioner:
enabled: "none" # disable all provisioner alerts
$ helm upgrade cas-alert-demo appscode/cassandra-alerts \
-n alert-cas \
--version=v2026.7.14 \
--set grafana.enabled=false \
-f custom-alerts.yaml
Note:
-fvalues files don’t mergegrafana.url/grafana.apikey/grafana.jobNameautomatically — re-pass them (or setgrafana.enabled=false) on everyhelm upgrade.
Cleaning up
To remove all resources created in this tutorial, run the following commands.
# Remove the cassandra-alerts release (PrometheusRule + dashboard-import Job)
$ helm uninstall cas-alert-demo -n alert-cas
# Remove the imported Grafana dashboard (it is not removed by helm uninstall)
$ curl -s -X DELETE -H "Authorization: Bearer <grafana-token>" \
http://localhost:3000/api/dashboards/uid/<uid-from-job-log>
# Remove the Cassandra instance
$ kubectl delete cassandra -n alert-cas cas-alert-demo
# Delete namespace
$ kubectl delete ns alert-cas
# Uninstall monitoring stack (optional — skip if other tutorials on this cluster still need them)
$ helm uninstall panopticon -n kubeops
$ helm uninstall prometheus -n monitoring
Next Steps
- Monitor your Cassandra cluster with KubeDB using builtin Prometheus.
- Monitor your Cassandra cluster with KubeDB using Prometheus operator.
- Learn how to use KubeDB to run a Apache Cassandra cluster here.
- Want to hack on KubeDB? Check our contribution guidelines.
































