# Monitor Data Pipelines on BYOC and Dedicated Clusters

> For the complete documentation index, see [llms.txt](https://docs.redpanda.com/llms.txt). Component-specific: [cloud-data-platform-full.txt](https://docs.redpanda.com/cloud-data-platform-full.txt)

---
title: Monitor Data Pipelines on BYOC and Dedicated Clusters
latest-operator-version: v26.1.4
latest-console-tag: v3.7.3
latest-connect-version: 4.93.0
latest-redpanda-tag: v26.1.9
docname: connect/configuration/monitor-connect
page-component-name: cloud-data-platform
page-version: master
page-component-version: master
page-component-title: Cloud
page-relative-src-path: connect/configuration/monitor-connect.adoc
page-edit-url: https://github.com/redpanda-data/cloud-docs/edit/main/modules/develop/pages/connect/configuration/monitor-connect.adoc
description: Configure Prometheus monitoring of your data pipelines on BYOC clusters.
page-git-created-date: "2024-09-09"
page-git-modified-date: "2024-12-03"
---

<!-- Source: https://docs.redpanda.com/cloud-data-platform/develop/connect/configuration/monitor-connect.md -->

You can configure monitoring on BYOC and Dedicated clusters to understand the behavior, health, and performance of your data pipelines.

Redpanda Connect automatically exports [detailed metrics for each component of your data pipeline](https://docs.redpanda.com/cloud-data-platform/develop/connect/components/metrics/about/) to a Prometheus endpoint, along with metrics for all other cluster services. You don’t need to update the configuration of your pipeline.

## [](#configure-prometheus)Configure Prometheus

To monitor a BYOC cluster in [Prometheus](https://prometheus.io/):

1.  On the Redpanda Cloud **Overview** page for your cluster, under **How to connect**, click the **Prometheus** tab.

2.  Click the copy icon next to **Prometheus YAML** to copy the contents to your clipboard.

    The YAML contains the Prometheus scrape target configuration, as well as authentication, for the cluster.

    ```yaml
    - job_name: redpandaCloud-sample
      static_configs:
        - targets:
            - console-<id>.<identifier>.fmc.cloud.redpanda.com
      metrics_path: /api/cloud/prometheus/public_metrics
      basic_auth:
        username: prometheus
        password: "<prom_pass>"
      scheme: https
    ```

3.  Save the YAML configuration to Prometheus replacing the following placeholders:

    -   `<id>.<identifier>`: ID and identifier from the **HTTPS endpoint**.

    -   `<prom_pass>`: Copy and paste the onscreen Prometheus password.


    Metrics from Redpanda endpoints are scraped into Prometheus. The metrics for each data pipeline are labelled by pipeline ID.


## [](#use-redpanda-monitoring-examples)Use Redpanda monitoring examples

For hands-on learning, Redpanda provides a repository with examples of monitoring Redpanda with Prometheus and Grafana: [redpanda-data/observability](https://github.com/redpanda-data/observability/tree/main/cloud).

![Example Redpanda Connect Dashboard^](https://docs.redpanda.com/cloud-data-platform/shared/_images/redpanda_connect_dashboard.png)

It includes [an example Grafana dashboard for Redpanda Connect](https://github.com/redpanda-data/observability/blob/main/grafana-dashboards/Redpanda-Connect-Dashboard.json) and a [sandbox environment](https://github.com/redpanda-data/observability#sandbox-environment) in which you launch a Dockerized Redpanda cluster and create a custom workload to monitor with dashboards.