Prerequisites
- A running ClickHouse Private deployment
- Helm available on your workstation
kubectlaccess to the target cluster- The kube-prometheus-stack Helm chart and its container images available in your private registry (see Airgap image preparation below)
Steps
1. Install kube-prometheus-stack
Add the Prometheus community Helm repository to your local Helm client and pull the chart:Note: The kube-prometheus-stack bundles Prometheus, Alertmanager, Grafana, and the Prometheus Operator. Consult the chart documentation for the full list of images that must be mirrored to your private registry.
2. Enable PodMonitors in the ClickHouse Operator
The ClickHouse operator Helm chart includes PodMonitor definitions for ClickHouse Server and Keeper. Enable them in your operator Helm values:
Both PodMonitors carry the label
release: kube-prometheus-stack, which matches the default podMonitorSelector of a kube-prometheus-stack Prometheus instance.
Note: If your Prometheus instance uses a different release name, update the PodMonitor label selector accordingly by overriding the operator chart templates or configuring prometheus.prometheusSpec.podMonitorSelector in the kube-prometheus-stack values.
3. Enable the Custom Metrics Handler (Optional)
ClickHouse Server exposes additionalClickHouse_CustomMetric_* metrics through a dedicated HTTP handler on port 3123. This endpoint requires authentication. To enable scraping:
basicAuth configuration.
For the full list of custom metrics and their recommended alert thresholds, see Metrics and alerts reference.
4. Verify Prometheus Targets
After deploying, confirm that Prometheus discovers and scrapes the ClickHouse targets:http://localhost:9090/targets in a browser. Look for target groups named podMonitor/clickhouse-operator-system/clickhouse-server-metrics and podMonitor/clickhouse-operator-system/clickhouse-keeper-metrics. All targets should show a State of UP.
Run a test query to confirm metrics are flowing:
5. Import the ClickHouse Grafana Mixin Dashboards
The ClickHouse Grafana mixin provides prebuilt dashboards for ClickHouse server and keeper metrics. In an airgapped environment, import the dashboard JSON files manually.Download dashboards
Download the mixin dashboard JSON files from the Grafana integration page or export them from an existing Grafana instance.Import via Grafana UI
- Open Grafana (bundled with kube-prometheus-stack):
- Log in at
http://localhost:3000(default credentials:admin/prom-operator). - Navigate to Dashboards > Import.
- Upload each dashboard JSON file or paste its contents.
- Select your Prometheus data source when prompted.
Import via ConfigMap
To manage dashboards as code, create a ConfigMap in the monitoring namespace with the Grafana sidecar label:grafana_dashboard: "1" label and loads the dashboards.
6. Configure Alert Rules (Optional)
Import the recommended ClickHouse alert rules into Prometheus by creating aPrometheusRule resource. See Configure alerting and Metrics and alerts reference for the full set of alert definitions.
Example:
Prepare Images for Airgap
The kube-prometheus-stack requires the following container images. Mirror them to your private registry before installation:
Note: Exact image tags depend on the kube-prometheus-stack chart version you are deploying. Run helm template on the pulled chart to extract the exact image references for your version.