KubeBlocks
BlogsKubeBlocks Cloud
Overview
Quickstart

Topologies

Redis Standalone Cluster
Redis Replication Cluster
Redis Sharding Cluster

Operations

Lifecycle Management
Vertical Scaling
Horizontal Scaling
Volume Expansion
Manage Redis Services
Modify Redis Parameters
Redis Switchover
Decommission Redis Replica

Backup And Restores

Create BackupRepo
Create Full Backup
Scheduled Backups
Scheduled Continuous Backup
Restore Redis Cluster
Restore with PITR

Custom Secret

Custom Password

Monitoring

Observability for Redis Clusters

tpl

  1. Prerequisites
  2. Install Monitoring Stack
    1. 1. Install Prometheus Operator
    2. 2. Verify Installation
  3. Deploy a Redis Cluster
  4. Verifying the Deployment
  5. Configure Metrics Collection
    1. 1. Verify Exporter Endpoint
    2. 2. Create PodMonitor
  6. Verify Monitoring Setup
    1. 1. Check Prometheus Targets
    2. 2. Test Metrics Collection
  7. Visualize in Grafana
    1. 1. Access Grafana
    2. 2. Import Dashboard
  8. Delete
  9. Summary

Redis Monitoring with Prometheus Operator

This guide demonstrates how to configure comprehensive monitoring for Redis clusters in KubeBlocks using:

  1. Prometheus Operator for metrics collection
  2. Built-in Redis exporter for metrics exposure
  3. Grafana for visualization

Prerequisites

    Before proceeding, ensure the following:

    • Environment Setup:
      • A Kubernetes cluster is up and running.
      • The kubectl CLI tool is configured to communicate with your cluster.
      • KubeBlocks CLI and KubeBlocks Operator are installed. Follow the installation instructions here.
    • Namespace Preparation: To keep resources isolated, create a dedicated namespace for this tutorial:
    kubectl create ns demo
    namespace/demo created
    

    Install Monitoring Stack

    1. Install Prometheus Operator

    Deploy the kube-prometheus-stack using Helm:

    helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
    helm install prometheus prometheus-community/kube-prometheus-stack \
      -n monitoring \
      --create-namespace
    

    2. Verify Installation

    Check all components are running:

    kubectl get pods -n monitoring
    

    Expected Output:

    NAME                                                     READY   STATUS    RESTARTS   AGE
    alertmanager-prometheus-kube-prometheus-alertmanager-0   2/2     Running   0          114s
    prometheus-grafana-75bb7d6986-9zfkx                      3/3     Running   0          2m
    prometheus-kube-prometheus-operator-7986c9475-wkvlk      1/1     Running   0          2m
    prometheus-kube-state-metrics-645c667b6-2s4qx            1/1     Running   0          2m
    prometheus-prometheus-kube-prometheus-prometheus-0       2/2     Running   0          114s
    prometheus-prometheus-node-exporter-47kf6                1/1     Running   0          2m1s
    prometheus-prometheus-node-exporter-6ntsl                1/1     Running   0          2m1s
    prometheus-prometheus-node-exporter-gvtxs                1/1     Running   0          2m1s
    prometheus-prometheus-node-exporter-jmxg8                1/1     Running   0          2m1s
    

    Deploy a Redis Cluster

      KubeBlocks uses a declarative approach for managing Redis Replication Clusters. Below is an example configuration for deploying a Redis Replication Cluster with two components, redis and redis sentinel.

      Apply the following YAML configuration to deploy the cluster:

      apiVersion: apps.kubeblocks.io/v1
      kind: Cluster
      metadata:
        name: redis-replication
        namespace: demo
      spec:
        terminationPolicy: Delete
        clusterDef: redis
        topology: replication
        componentSpecs:
          - name: redis
            serviceVersion: "7.2.4"
            disableExporter: false
            replicas: 2
            resources:
              limits:
                cpu: '0.5'
                memory: 0.5Gi
              requests:
                cpu: '0.5'
                memory: 0.5Gi
            volumeClaimTemplates:
              - name: data
                spec:
                  storageClassName: ""
                  accessModes:
                    - ReadWriteOnce
                  resources:
                    requests:
                      storage: 20Gi
          - name: redis-sentinel
            replicas: 3
            resources:
              limits:
                cpu: '0.5'
                memory: 0.5Gi
              requests:
                cpu: '0.5'
                memory: 0.5Gi
            volumeClaimTemplates:
              - name: data
                spec:
                  storageClassName: ""
                  accessModes:
                    - ReadWriteOnce
                  resources:
                    requests:
                      storage: 20Gi
      

      Key Monitoring Configuration

      • disableExporter: false enables the built-in metrics exporter
      • Exporter runs as sidecar container in each Redis pod
      • Scrapes Redis metrics on port 9187

      Verifying the Deployment

      Monitor the cluster status until it transitions to the Running state:

      kubectl get cluster redis-replication -n demo -w
      

      Example Output:

      NAME                CLUSTER-DEFINITION   TERMINATION-POLICY   STATUS     AGE
      redis-replication   redis           Delete               Creating   50s
      redis-replication   redis           Delete               Running    4m2s
      

      Once the cluster status becomes Running, your Redis cluster is ready for use.

      Configure Metrics Collection

      1. Verify Exporter Endpoint

      Confirm metrics are exposed:

      kubectl get po redis-replication-redis-0 -n demo -oyaml | \
        yq '.spec.containers[] | select(.name=="metrics") | .ports'
      

      Example Output:

      - containerPort: 9121
        name: http-metrics  # Used in PodMonitor
        protocol: TCP
      

      Test metrics endpoint:

      kubectl -n demo exec -it pods/redis-replication-redis-0 -c metrics -- \
        curl -s http://127.0.0.1:9121/metrics | head -n 50
      

      2. Create PodMonitor

      apiVersion: monitoring.coreos.com/v1
      kind: PodMonitor
      metadata:
        name: redis-replication-pod-monitor
        namespace: demo
        labels:               # Must match the setting in 'prometheus.spec.podMonitorSelector'
          release: prometheus
      spec:
        jobLabel: app.kubernetes.io/managed-by
        # defines the labels which are transferred from the
        # associated Kubernetes 'Pod' object onto the ingested metrics
        # set the lables w.r.t you own needs
        podTargetLabels:
        - app.kubernetes.io/instance
        - app.kubernetes.io/managed-by
        - apps.kubeblocks.io/component-name
        - apps.kubeblocks.io/pod-name
        podMetricsEndpoints:
          - path: /metrics
            port: http-metrics   # Must match exporter port name
            scheme: http
        namespaceSelector:
          matchNames:
            - demo               # Target namespace
        selector:
          matchLabels:
            app.kubernetes.io/instance: redis-replication
            apps.kubeblocks.io/component-name: redis
      

      PodMonitor Configuration Guide

      ParameterRequiredDescription
      portYesMust match exporter port name ('http-metrics')
      namespaceSelectorYesTargets namespace where Redis runs
      labelsYesMust match Prometheus's podMonitorSelector
      pathNoMetrics endpoint path (default: /metrics)
      intervalNoScraping interval (default: 30s)

      Verify Monitoring Setup

      1. Check Prometheus Targets

      Forward and access Prometheus UI:

      kubectl port-forward svc/prometheus-kube-prometheus-prometheus -n monitoring 9090:9090
      

      Open your browser and navigate to: http://localhost:9090/targets

      Check if there is a scrape job corresponding to the PodMonitor (the job name is 'demo/redis-replication-pod-monitor').

      Expected State:

      • The State of the target should be UP.
      • The target's labels should include the ones defined in podTargetLabels (e.g., 'app_kubernetes_io_instance').

      2. Test Metrics Collection

      Verify metrics are being scraped:

      curl -sG "http://localhost:9090/api/v1/query" --data-urlencode 'query=redis_up{app_kubernetes_io_instance="redis-replication"}' | jq
      

      Example Output:

      {
        "status": "success",
        "data": {
          "resultType": "vector",
          "result": [
            {
              "metric": {
                "__name__": "redis_up",
                "app_kubernetes_io_instance": "redis-replication",
                "app_kubernetes_io_managed_by": "kubeblocks",
                "apps_kubeblocks_io_component_name": "redis",
                "apps_kubeblocks_io_pod_name": "redis-replication-redis-1",
                "container": "metrics",
                "endpoint": "http-metrics",
                "instance": "10.244.0.233:9121",
                "job": "kubeblocks",
                "namespace": "demo",
                "pod": "redis-replication-redis-1"
              },
              "value": [
                1747475968.165,
                "1"
              ]
            },
            {
              "metric": {
                "__name__": "redis_up",
                "app_kubernetes_io_instance": "redis-replication",
                "app_kubernetes_io_managed_by": "kubeblocks",
                "apps_kubeblocks_io_component_name": "redis",
                "apps_kubeblocks_io_pod_name": "redis-replication-redis-0",
                "container": "metrics",
                "endpoint": "http-metrics",
                "instance": "10.244.0.231:9121",
                "job": "kubeblocks",
                "namespace": "demo",
                "pod": "redis-replication-redis-0"
              },
              "value": [
                1747475968.165,
                "1"
              ]
            }
          ]
        }
      }
      

      Visualize in Grafana

      1. Access Grafana

      Port-forward and login:

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

      Open your browser and navigate to http://localhost:3000. Use the default credentials to log in:

      • Username: 'admin'
      • Password: 'prom-operator' (default)

      2. Import Dashboard

      Import the KubeBlocks Redis dashboard:

      1. In Grafana, navigate to "+" → "Import"
      2. Choose one of these methods:
        • Paste the dashboard URL: https://raw.githubusercontent.com/apecloud/kubeblocks-addons/main/addons/redis/dashboards/redis.json
        • Or upload the JSON file directly

      Dashboard Includes:

      • Cluster status overview
      • Query performance metrics
      • Connection statistics
      • Replication health

      redis-monitoring-grafana-dashboard.png

      Delete

      To delete all the created resources, run the following commands:

      kubectl delete cluster redis-replication -n demo
      kubectl delete ns demo
      kubectl delete podmonitor redis-replication-pod-monitor -n demo
      

      Summary

      In this tutorial, we set up observability for a Redis cluster in KubeBlocks using the Prometheus Operator. By configuring a PodMonitor, we enabled Prometheus to scrape metrics from the Redis exporter. Finally, we visualized these metrics in Grafana. This setup provides valuable insights for monitoring the health and performance of your Redis databases.

      © 2025 ApeCloud PTE. Ltd.