Power monitoring

OpenShift Container Platform 4.15

Configuring and using power monitoring for Red Hat OpenShift

Red Hat OpenShift Documentation Team

Abstract

You can use power monitoring to monitor the power consumption for various components, such as CPU and DRAM, for each container running in an OpenShift Container Platform cluster.

Chapter 1. Power monitoring for Red Hat OpenShift release notes

Important

Power monitoring is a Technology Preview feature only. Technology Preview features are not supported with Red Hat production service level agreements (SLAs) and might not be functionally complete. Red Hat does not recommend using them in production. These features provide early access to upcoming product features, enabling customers to test functionality and provide feedback during the development process.

For more information about the support scope of Red Hat Technology Preview features, see Technology Preview Features Support Scope.

Power monitoring for Red Hat OpenShift enables you to monitor the power usage of workloads and identify the most power-consuming namespaces running in an OpenShift Container Platform cluster with key power consumption metrics, such as CPU or DRAM, measured at container level.

These release notes track the development of power monitoring for Red Hat OpenShift in the OpenShift Container Platform.

For an overview of the Power monitoring Operator, see About power monitoring.

1.1. Power monitoring 0.1 (Technology Preview)

This release introduces a Technology Preview version of power monitoring for Red Hat OpenShift. The following advisory is available for power monitoring 0.1:

1.1.1. Features

  • Deployment and deletion of Kepler
  • Power usage metrics from Intel-based bare-metal deployments
  • Dashboards for plotting power usage

Chapter 2. Power monitoring overview

Important

Power monitoring is a Technology Preview feature only. Technology Preview features are not supported with Red Hat production service level agreements (SLAs) and might not be functionally complete. Red Hat does not recommend using them in production. These features provide early access to upcoming product features, enabling customers to test functionality and provide feedback during the development process.

For more information about the support scope of Red Hat Technology Preview features, see Technology Preview Features Support Scope.

2.1. About power monitoring

You can use power monitoring for Red Hat OpenShift to monitor the power usage and identify power-consuming containers running in an OpenShift Container Platform cluster. Power monitoring collects and exports energy-related system statistics from various components, such as CPU and DRAM. It provides granular power consumption data for Kubernetes pods, namespaces, and nodes.

Warning

Power monitoring Technology Preview works only in bare-metal deployments. Most public cloud vendors do not expose Kernel Power Management Subsystems to virtual machines.

2.2. Power monitoring architecture

Power monitoring is made up of the following major components:

The Power monitoring Operator
For administrators, the Power monitoring Operator streamlines the monitoring of power usage for workloads by simplifying the deployment and management of Kepler in an OpenShift Container Platform cluster. The setup and configuration for the Power monitoring Operator are simplified by adding a Kepler custom resource definition (CRD). The Operator also manages operations, such as upgrading, removing, configuring, and redeploying Kepler.
Kepler
Kepler is a key component of power monitoring. It is responsible for monitoring the power usage of containers running in OpenShift Container Platform. It generates metrics related to the power usage of both nodes and containers.

2.3. Kepler hardware and virtualization support

Kepler is the key component of power monitoring that collects real-time power consumption data from a node through one of the following methods:

Kernel Power Management Subsystem (preferred)
  • rapl-sysfs: This requires access to the /sys/class/powercap/intel-rapl host file.
  • rapl-msr: This requires access to the /dev/cpu/*/msr host file.
The estimator power source

Without access to the kernel’s power cap subsystem, Kepler uses a machine learning model to estimate the power usage of the CPU on the node.

Warning

The estimator feature is experimental, not supported, and should not be relied upon.

You can identify the power estimation method for a node by using the Power Monitoring / Overview dashboard.

2.4. Additional resources

Chapter 3. Installing power monitoring for Red Hat OpenShift

Important

Power monitoring is a Technology Preview feature only. Technology Preview features are not supported with Red Hat production service level agreements (SLAs) and might not be functionally complete. Red Hat does not recommend using them in production. These features provide early access to upcoming product features, enabling customers to test functionality and provide feedback during the development process.

For more information about the support scope of Red Hat Technology Preview features, see Technology Preview Features Support Scope.

You can install power monitoring for Red Hat OpenShift by deploying the Power monitoring Operator in the OpenShift Container Platform web console.

3.1. Installing the Power monitoring Operator

As a cluster administrator, you can install the Power monitoring Operator from OperatorHub by using the OpenShift Container Platform web console.

Warning

You must remove any previously installed versions of the Power monitoring Operator before installation.

Prerequisites

  • You have access to the OpenShift Container Platform web console.
  • You are logged in as a user with the cluster-admin role.

Procedure

  1. In the Administrator perspective of the web console, go to OperatorsOperatorHub.
  2. Search for power monitoring, click the Power monitoring for Red Hat OpenShift tile, and then click Install.
  3. Click Install again to install the Power monitoring Operator.

    Power monitoring for Red Hat OpenShift is now available in all namespaces of the OpenShift Container Platform cluster.

Verification

  1. Verify that the Power monitoring Operator is listed in OperatorsInstalled Operators. The Status should resolve to Succeeded.

3.2. Deploying Kepler

You can deploy Kepler by creating an instance of the Kepler custom resource definition (CRD) by using the Power monitoring Operator.

Prerequisites

  • You have access to the OpenShift Container Platform web console.
  • You are logged in as a user with the cluster-admin role.
  • You have installed the Power monitoring Operator.

Procedure

  1. In the Administrator perspective of the web console, go to OperatorsInstalled Operators.
  2. Click Power monitoring for Red Hat OpenShift from the Installed Operators list and go to the Kepler tab.
  3. Click Create Kepler.
  4. On the Create Kepler page, ensure the Name is set to kepler.

    Important

    The name of your Kepler instance must be set to kepler. All other instances are ignored by the Power monitoring Operator.

  5. Click Create to deploy Kepler and power monitoring dashboards.

Chapter 4. Configuring power monitoring

Important

Power monitoring is a Technology Preview feature only. Technology Preview features are not supported with Red Hat production service level agreements (SLAs) and might not be functionally complete. Red Hat does not recommend using them in production. These features provide early access to upcoming product features, enabling customers to test functionality and provide feedback during the development process.

For more information about the support scope of Red Hat Technology Preview features, see Technology Preview Features Support Scope.

The Kepler resource is a Kubernetes custom resource definition (CRD) that enables you to configure the deployment and monitor the status of the Kepler resource.

4.1. The Kepler configuration

You can configure Kepler with the spec field of the Kepler resource.

Important

Ensure that the name of your Kepler instance is kepler. All other instances are ignored by the Power monitoring Operator.

The following is the list of configuration options:

Table 4.1. Kepler configuration options

NameSpecDescriptionDefault

port

exporter.deployment

The port on the node where the Prometheus metrics are exposed.

9103

nodeSelector

exporter.deployment

The nodes on which Kepler exporter pods are scheduled.

kubernetes.io/os: linux

tolerations

exporter.deployment

The tolerations for Kepler exporter that allow the pods to be scheduled on nodes with specific characteristics.

- operator: "Exists"

Example Kepler resource with default configuration

apiVersion: kepler.system.sustainable.computing.io/v1alpha1
kind: Kepler
metadata:
  name: kepler
spec:
  exporter:
    deployment:
      port: 9103 1
      nodeSelector:
        kubernetes.io/os: linux 2
      Tolerations: 3
      - key: ""
        operator: "Exists"
        value: ""
        effect: ""

1
The Prometheus metrics are exposed on port 9103.
2
Kepler pods are scheduled on Linux nodes.
3
The default tolerations allow Kepler to be scheduled on any node.

4.2. Monitoring the Kepler status

You can monitor the state of the Kepler exporter with the status field of the Kepler resource.

The status.exporter field includes information, such as the following:

  • The number of nodes currently running the Kepler pods
  • The number of nodes that should be running the Kepler pods
  • Conditions representing the health of the Kepler resource

This provides you with valuable insights into the changes made through the spec field.

Example state of the Kepler resource

apiVersion: kepler.system.sustainable.computing.io/v1alpha1
kind: Kepler
metadata:
  name: kepler
status:
 exporter:
   conditions: 1
     - lastTransitionTime: '2024-01-11T11:07:39Z'
       message: Reconcile succeeded
       observedGeneration: 1
       reason: ReconcileSuccess
       status: 'True'
       type: Reconciled
     - lastTransitionTime: '2024-01-11T11:07:39Z'
       message: >-
         Kepler daemonset "kepler-operator/kepler" is deployed to all nodes and
         available; ready 2/2
       observedGeneration: 1
       reason: DaemonSetReady
       status: 'True'
       type: Available
   currentNumberScheduled: 2 2
   desiredNumberScheduled: 2 3

1
The health of the Kepler resource. In this example, Kepler is successfully reconciled and ready.
2
The number of nodes currently running the Kepler pods is 2.
3
The wanted number of nodes to run the Kepler pods is 2.

Chapter 5. Visualizing power monitoring metrics

Important

Power monitoring is a Technology Preview feature only. Technology Preview features are not supported with Red Hat production service level agreements (SLAs) and might not be functionally complete. Red Hat does not recommend using them in production. These features provide early access to upcoming product features, enabling customers to test functionality and provide feedback during the development process.

For more information about the support scope of Red Hat Technology Preview features, see Technology Preview Features Support Scope.

You can visualize power monitoring metrics in the OpenShift Container Platform web console by accessing power monitoring dashboards or by exploring Metrics under the Observe tab.

5.1. Power monitoring dashboards overview

There are two types of power monitoring dashboards. Both provide different levels of details around power consumption metrics for a single cluster:

Power Monitoring / Overview dashboard

With this dashboard, you can observe the following information:

  • An aggregated view of CPU architecture and its power source (rapl-sysfs, rapl-msr, or estimator) along with total nodes with this configuration
  • Total energy consumption by a cluster in the last 24 hours (measured in kilowatt-hour)
  • The amount of power consumed by the top 10 namespaces in a cluster in the last 24 hours
  • Detailed node information, such as its CPU architecture and component power source

These features allow you to effectively monitor the energy consumption of the cluster without needing to investigate each namespace separately.

Warning

Ensure that the Components Source column does not display estimator as the power source.

Figure 5.1. The Detailed Node Information table with rapl-sysfs as the component power source

power monitoring component power source

If Kepler is unable to obtain hardware power consumption metrics, the Components Source column displays estimator as the power source, which is not supported in Technology Preview. If that happens, then the values from the nodes are not accurate.

Power Monitoring / Namespace dashboard

This dashboard allows you to view metrics by namespace and pod. You can observe the following information:

  • The power consumption metrics, such as consumption in DRAM and PKG
  • The energy consumption metrics in the last hour, such as consumption in DRAM and PKG for core and uncore components

This feature allows you to investigate key peaks and easily identify the primary root causes of high consumption.

5.2. Accessing power monitoring dashboards

You can access power monitoring dashboards from the Administrator perspective of the OpenShift Container Platform web console.

Prerequisites

  • You have access to the OpenShift Container Platform web console.
  • You are logged in as a user with the cluster-admin role.
  • You have installed the Power monitoring Operator.
  • You have deployed Kepler in your cluster.
  • You have enabled monitoring for user-defined projects.

Procedure

  1. In the Administrator perspective of the web console, go to ObserveDashboards.
  2. From the Dashboard drop-down list, select the power monitoring dashboard you want to see:

    • Power Monitoring / Overview
    • Power Monitoring / Namespace

5.3. Power monitoring metrics overview

The Power monitoring Operator exposes the following metrics, which you can view by using the OpenShift Container Platform web console under the ObserveMetrics tab.

Warning

This list of exposed metrics is not definitive. Metrics might be added or removed in future releases.

Table 5.1. Power monitoring Operator metrics

Metric nameDescription

kepler_container_joules_total

The aggregated package or socket energy consumption of CPU, DRAM, and other host components by a container.

kepler_container_core_joules_total

The total energy consumption across CPU cores used by a container. If the system has access to RAPL_ metrics, this metric reflects the proportional container energy consumption of the RAPL Power Plan 0 (PP0), which is the energy consumed by all CPU cores in the socket.

kepler_container_dram_joules_total

The total energy consumption of DRAM by a container.

kepler_container_uncore_joules_total

The cumulative energy consumption by uncore components used by a container. The number of components might vary depending on the system. The uncore metric is processor model-specific and might not be available on some server CPUs.

kepler_container_package_joules_total

The cumulative energy consumed by the CPU socket used by a container. It includes all core and uncore components.

kepler_container_other_joules_total

The cumulative energy consumption of host components, excluding CPU and DRAM, used by a container. Generally, this metric is the energy consumption of ACPI hosts.

kepler_container_bpf_cpu_time_us_total

The total CPU time used by the container that utilizes the BPF tracing.

kepler_container_cpu_cycles_total

The total CPU cycles used by the container that utilizes hardware counters. CPU cycles is a metric directly related to CPU frequency. On systems where processors run at a fixed frequency, CPU cycles and total CPU time are roughly equivalent. On systems where processors run at varying frequencies, CPU cycles and total CPU time have different values.

kepler_container_cpu_instructions_total

The total CPU instructions used by the container that utilizes hardware counters. CPU instructions is a metric that accounts how the CPU is used.

kepler_container_cache_miss_total

The total cache miss that occurs for a container that uses hardware counters.

kepler_container_cgroupfs_cpu_usage_us_total

The total CPU time used by a container reading from control group statistics.

kepler_container_cgroupfs_memory_usage_bytes_total

The total memory in bytes used by a container reading from control group statistics.

kepler_container_cgroupfs_system_cpu_usage_us_total

The total CPU time in kernel space used by the container reading from control group statistics.

kepler_container_cgroupfs_user_cpu_usage_us_total

The total CPU time in user space used by a container reading from control group statistics.

kepler_container_bpf_net_tx_irq_total

The total number of packets transmitted to network cards of a container that uses the BPF tracing.

kepler_container_bpf_net_rx_irq_total

The total number of packets received from network cards of a container that uses the BPF tracing.

kepler_container_bpf_block_irq_total

The total number of block I/O calls of a container that uses the BPF tracing.

kepler_node_info

The node metadata, such as the node CPU architecture.

kepler_node_core_joules_total

The total energy consumption across CPU cores used by all containers running on a node and operating system.

kepler_node_uncore_joules_total

The cumulative energy consumption by uncore components used by all containers running on the node and operating system. The number of components might vary depending on the system.

kepler_node_dram_joules_total

The total energy consumption of DRAM by all containers running on the node and operating system.

kepler_node_package_joules_total

The cumulative energy consumed by the CPU socket used by all containers running on the node and operating system. It includes all core and uncore components.

kepler_node_other_host_components_joules_total

The cumulative energy consumption of host components, excluding CPU and DRAM, used by all containers running on the node and operating system. Generally, this metric is the energy consumption of ACPI hosts.

kepler_node_platform_joules_total

The total energy consumption of the host. Generally, this metric is the host energy consumption from Redfish BMC or ACPI.

kepler_node_energy_stat

Multiple metrics from nodes labeled with container resource utilization control group metrics that are used in the model server.

kepler_node_accelerator_intel_qat

The utilization of the accelerator Intel QAT on a certain node. If the system contains Intel QATs, Kepler can calculate the utilization of the node’s QATs through telemetry.

5.4. Additional resources

Chapter 6. Uninstalling power monitoring

Important

Power monitoring is a Technology Preview feature only. Technology Preview features are not supported with Red Hat production service level agreements (SLAs) and might not be functionally complete. Red Hat does not recommend using them in production. These features provide early access to upcoming product features, enabling customers to test functionality and provide feedback during the development process.

For more information about the support scope of Red Hat Technology Preview features, see Technology Preview Features Support Scope.

You can uninstall power monitoring by deleting the Kepler instance and then the Power monitoring Operator in the OpenShift Container Platform web console.

6.1. Deleting Kepler

You can delete Kepler by removing the Kepler instance of the Kepler custom resource definition (CRD) from the OpenShift Container Platform web console.

Prerequisites

  • You have access to the OpenShift Container Platform web console.
  • You are logged in as a user with the cluster-admin role.

Procedure

  1. In the Administrator perspective of the web console, go to OperatorsInstalled Operators.
  2. Click Power monitoring for Red Hat OpenShift from the Installed Operators list and go to the Kepler tab.
  3. Locate the Kepler instance entry in the list.
  4. Click kebab for this entry and select Delete Kepler.
  5. In the Delete Kepler? dialog, click Delete to delete the Kepler instance.

6.2. Uninstalling the Power monitoring Operator

If you installed the Power monitoring Operator by using OperatorHub, you can uninstall it from the OpenShift Container Platform web console.

Prerequisites

  • You have access to the OpenShift Container Platform web console.
  • You are logged in as a user with the cluster-admin role.

Procedure

  1. Delete the Kepler instance.

    Warning

    Ensure that you have deleted the Kepler instance before uninstalling the Power monitoring Operator.

  2. Go to OperatorsInstalled Operators.
  3. Locate the Power monitoring for Red Hat OpenShift entry in the list.
  4. Click kebab for this entry and select Uninstall Operator.
  5. In the Uninstall Operator? dialog, click Uninstall to uninstall the Power monitoring Operator.

Legal Notice

Copyright © 2024 Red Hat, Inc.
The text of and illustrations in this document are licensed by Red Hat under a Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). An explanation of CC-BY-SA is available at http://creativecommons.org/licenses/by-sa/3.0/. In accordance with CC-BY-SA, if you distribute this document or an adaptation of it, you must provide the URL for the original version.
Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law.
Red Hat, Red Hat Enterprise Linux, the Shadowman logo, the Red Hat logo, JBoss, OpenShift, Fedora, the Infinity logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries.
Linux® is the registered trademark of Linus Torvalds in the United States and other countries.
Java® is a registered trademark of Oracle and/or its affiliates.
XFS® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries.
MySQL® is a registered trademark of MySQL AB in the United States, the European Union and other countries.
Node.js® is an official trademark of Joyent. Red Hat is not formally related to or endorsed by the official Joyent Node.js open source or commercial project.
The OpenStack® Word Mark and OpenStack logo are either registered trademarks/service marks or trademarks/service marks of the OpenStack Foundation, in the United States and other countries and are used with the OpenStack Foundation's permission. We are not affiliated with, endorsed or sponsored by the OpenStack Foundation, or the OpenStack community.
All other trademarks are the property of their respective owners.