> ## Documentation Index
> Fetch the complete documentation index at: https://astronomer.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Deployment metrics

In Astro Private Cloud versions before 1.0, Deployment-level metrics such as CPU usage, memory usage, and network I/O were available by default through built-in node exporter and cAdvisor integrations. These were [removed in APC 1.0](/docs/astro-private-cloud/v-2-x/breaking-changes-removals#prometheus-blackbox-exporter-removed-0-37-x-→-2-0-only) to reduce Prometheus data volume and improve performance.

Starting with APC 2.0, you can re-enable these metrics with two Helm flags. After you enable them, four additional panels appear in the **Metrics** tab for each Deployment in the Astro Private Cloud UI:

* **CPU Usage**: Percentage of CPU consumed by the Deployment's containers.
* **Memory Usage**: Percentage of memory consumed by the Deployment's containers.
* **Network Rx**: Inbound network traffic received by the Deployment's Pods.
* **Network Tx**: Outbound network traffic transmitted by the Deployment's Pods.

<Frame>
  <img src="https://mintcdn.com/astronomer/Ct4jHNJYwyny9aUD/images/astro-private-cloud/deployment-metrics.png?fit=max&auto=format&n=Ct4jHNJYwyny9aUD&q=85&s=4c36a32efb4fda19ac29d8e279f62fa6" alt="Deployment metrics panels showing CPU Usage, Memory Usage, Network Rx, and Network Tx" width="1024" height="494" data-path="images/astro-private-cloud/deployment-metrics.png" />
</Frame>

Both features are disabled by default.

## Prerequisites

* Astro Private Cloud 2.0 or later with Helm chart version 2.0.0 or later.
* System Admin access to update the Astro Private Cloud Helm configuration.

### Enable Deployment metrics

<Steps>
  <Step title="Update your Helm configuration">
    Add the following values to your `values.yaml` file:

    ```yaml focus={2-3,5-6} wrap theme={null}
    global:
      nodeExporter:
        enabled: true
      cadvisor:
        enabled: true
    ```
  </Step>

  <Step title="Apply the configuration">
    Run a Helm upgrade to apply the changes:

    ```bash wrap theme={null}
    helm upgrade -f values.yaml -n <your-namespace> astronomer astronomer/astronomer
    ```
  </Step>

  <Step title="Verify the metrics">
    Open the Astro Private Cloud UI, navigate to a Deployment, and click the **Metrics** tab. The CPU Usage, Memory Usage, Network Rx, and Network Tx panels appear alongside the existing Database Connections and Waiting Clients panels.
  </Step>
</Steps>
