Updated on 2025-08-15 GMT+08:00

Connecting Elasticsearch Exporter to AOM for Monitoring Metrics

Scenario

When using Elasticsearch, you need to monitor Elasticsearch running, such as the cluster and index status. The Prometheus monitoring function monitors Elasticsearch running using Exporter in the CCE container scenario. This section describes how to deploy Elasticsearch Exporter and implement alarm access.

Constraints

You are advised to use CCE for unified Exporter management.

Prerequisites

Deploying Elasticsearch Exporter in a CCE Cluster

  1. Log in to the CCE console.
  2. Click the connected cluster. The cluster management page is displayed.
  3. Perform the following operations to deploy Exporter:

    1. Configure a secret.

      In the navigation pane, choose ConfigMaps and Secrets. Then click Create from YAML in the upper right corner of the page. For details about how to configure a secret, see Creating a Secret.

      The Elasticsearch connection string is in the format of "<proto>://<user>:<password>@<host>:<port>". You can also leave the password blank.

      YAML configuration example (password encrypted using Opaque):

      apiVersion: v1
      kind: Secret
      metadata:
        name: es-secret-test
        namespace: default 
      type: Opaque
      stringData:
        esURI: http://124.70.14.51:30920 # URI of Elasticsearch. Use the IP address of the cluster or any node in the cluster.
    2. Deploy Elasticsearch Exporter.

      In the navigation pane, choose Workloads. In the upper right corner, click Create Workload. Then select the Deployment workload and a desired namespace to deploy Elasticsearch Exporter.

      For parameters in the YAML used to deploy Exporter, see elasticsearch_exporter.

      The following is a YAML example. You can set ES_ALL to collect all Elasticsearch monitoring items. You can also select desired monitoring items to collect.
      apiVersion: apps/v1
      kind: Deployment
      metadata:
        labels:
          k8s-app: es-exporter # Change the value based on service requirements.
        name: es-exporter # Change the value based on service requirements.
        namespace: default # Select a proper namespace to deploy Exporter. If no namespace is available, create one.
      spec:
        replicas: 1
        selector:
          matchLabels:
            k8s-app: es-exporter # Change the value based on service requirements.
        template:
          metadata:
            labels:
              k8s-app: es-exporter # Change the value based on service requirements.
          spec:
            containers:
            - env:
                - name: ES_URI
                  valueFrom:
                    secretKeyRef:
                      name: es-secret-test # Secret name specified in the previous step.
                      key: esURI # Secret key specified in the previous step.
                - name: ES_ALL
                  value: "true"
              image: swr.cn-north-4.myhuaweicloud.com/mall-swarm-demo/es-exporter:1.1.0
              imagePullPolicy: IfNotPresent
              name: es-exporter
              ports:
              - containerPort: 9114
                name: metric-port
              securityContext:
                privileged: false
              terminationMessagePath: /dev/termination-log
              terminationMessagePolicy: File
            dnsPolicy: ClusterFirst
            imagePullSecrets:
            - name: default-secret
            restartPolicy: Always
            schedulerName: default-scheduler
            securityContext: {}
            terminationGracePeriodSeconds: 30
      ---
      apiVersion: v1
      kind: Service
      metadata:
        name: es-exporter
        name-space: default # Must be the same as the namespace where Exporter is deployed.
      spec:
        type: NodePort
        selector:
          k8s-app: es-exporter
        ports:
          - protocol: TCP
            nodePort: 30921
            port: 9114
            targetPort: 9114
    3. Check whether Elasticsearch Exporter is successfully deployed.
      1. On the Deployments tab page, click the Deployment created in 3.b. In the pod list, choose More > View Logs in the Operation column. The Exporter is successfully started and its access address is exposed.
      2. Run the following commands to check whether Elasticsearch Exporter is successfully deployed. If metric data is returned, it is successfully deployed. Perform verification using one of the following methods:
        • Log in to a cluster node and run either of the following commands:
          curl http://{Cluster IP address}:9114/metrics
          curl http://{Private IP address of any node in the cluster}:30921/metrics
        • Access http://{Public IP address of any node in the cluster}:30921/metrics.
          Figure 1 Access address
        • In the instance list, choose More > Remote Login in the Operation column and run the following command:
          curl http://localhost:9114/metric

Configuring a CCE Cluster Metric Collection Rule

Add PodMonitor to configure a Prometheus collection rule for monitoring the service data of applications deployed in the CCE cluster.

  1. Log in to the AOM 2.0 console.
  2. In the navigation pane on the left, choose Prometheus Monitoring > Instances.
  3. In the instance list, click a Prometheus instance for CCE.
  4. In the navigation pane on the left, choose Metric Management. On the Settings tab page, click PodMonitor.
  5. Click Add PodMonitor. In the displayed dialog box, set parameters and click OK.

    In the following example, metrics are collected every 30s. Therefore, you can check the reported metrics on the AOM page about 30s later.

    apiVersion: monitoring.coreos.com/v1
    kind: PodMonitor
    metadata:
      name: elasticSearch-exporter
      namespace: default
    spec:
      namespaceSelector: # Select the namespace where Exporter is deployed.
        matchNames:
          - default # Namespace where Exporter is located.
      podMetricsEndpoints:
      - interval: 30s # Set the metric collection period.
        path: /metrics # Enter the path corresponding to Prometheus Exporter. Default: /metrics.
        port: metric-port # Enter the name of ports in the YAML file corresponding to Prometheus Exporter.
      selector: # Enter the label of the target Exporter pod.
        matchLabels:
          k8s-app: elasticSearch-exporter

Verifying that CCE Cluster Metrics Can Be Reported to AOM

  1. Log in to the AOM 2.0 console.
  2. In the navigation pane on the left, choose Prometheus Monitoring > Instances.
  3. Click the Prometheus instance connected to the CCE cluster. The instance details page is displayed.
  4. On the Metrics tab page of the Metric Management page, select your target cluster.
  5. Select job {namespace}/elasticsearch-exporter to query custom metrics starting with elasticsearch.

Setting a Dashboard and Alarm Rule on AOM

By setting a dashboard, you can monitor CCE cluster data on the same screen. By setting an alarm rule, you can detect cluster faults and implement warning in a timely manner.

  • Setting a dashboard
    1. Log in to the AOM 2.0 console.
    2. In the navigation pane, choose Dashboard > Dashboard. On the displayed page, click Add Dashboard to add a dashboard. For details, see Creating a Dashboard.
    3. On the Dashboard page, select a Prometheus instance for CCE and click Add Graph. For details, see Adding a Graph to a Dashboard.
  • Setting an alarm rule
    1. Log in to the AOM 2.0 console.
    2. In the navigation pane, choose Alarm Center > Alarm Rules.
    3. On the Prometheus Monitoring tab page, click Create Alarm Rule to create an alarm rule. For details, see Creating a Metric Alarm Rule.