> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8a08bda2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Managed Postgres monitoring

> Overview of monitoring and observability options for ClickHouse Managed Postgres

export const galaxyOnClick = eventName => () => {
  try {
    if (typeof window !== "undefined" && window.galaxy && eventName) {
      window.galaxy.track(eventName, {
        interaction: "click"
      });
    }
  } catch (e) {}
};

export const BetaBadge = ({link, galaxyTrack, galaxyEvent}) => {
  if (link) {
    return <a href={link} target="_blank" rel="noopener noreferrer" className="betaBadge" onClick={galaxyTrack && galaxyEvent ? galaxyOnClick(galaxyEvent) : undefined}>
                <Icon />
                <span>Beta</span>
            </a>;
  }
  return <div className="betaBadge">
            <Icon />
            <span>
                Beta feature. 
                <u>
                    <a href="/docs/beta-and-experimental-features#beta-features">
                        Learn more.
                    </a>
                </u>
            </span>
        </div>;
};

You can monitor your Managed Postgres services with the following
methods:

| Section                                                                 | Description                                                                               | Setup required           |
| ----------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ------------------------ |
| [Dashboard](/products/managed-postgres/monitoring/dashboard)            | Built-in cloud console charts for resource usage and database activity                    | None                     |
| [Query Insights](/products/managed-postgres/monitoring/query-insights)  | Per-statement telemetry: every query pattern ranked by impact, with diagnostic counters   | None                     |
| [Prometheus endpoint](/products/managed-postgres/monitoring/prometheus) | Scrape metrics into Prometheus, Grafana, Datadog, or any OpenMetrics-compatible collector | API key + scraper config |
| [Metrics reference](/products/managed-postgres/monitoring/metrics)      | Full list of metrics exposed by the Prometheus endpoint, with types, labels, and meanings | N/A                      |

<h2 id="quick-start">
  Quick start
</h2>

Open the cloud console and navigate to the **Monitoring** tab of any
Managed Postgres instance to see live charts for CPU, memory, IOPS,
connections, transactions, cache hit ratio, and deadlocks. No
configuration required.

For per-query telemetry — latency percentiles, cache vs. disk reads,
temp spills, parallel worker utilization, and WAL volume — open the
[Query Insights](/products/managed-postgres/monitoring/query-insights) tab
on the same instance. To pipe host-level metrics into your own
observability stack, use the
[Prometheus endpoint](/products/managed-postgres/monitoring/prometheus).
