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

# Managed Postgres の監視

> 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>ベータ</span>
            </a>;
  }
  return <div className="betaBadge">
            <Icon />
            <span>
                ベータ機能です。 
                <u>
                    <a href="/docs/beta-and-experimental-features#beta-features">
                        詳しくはこちら。
                    </a>
                </u>
            </span>
        </div>;
};

Managed Postgres サービスは、以下の方法で監視できます。

| Section                                                                   | Description                                                            | Setup required        |
| ------------------------------------------------------------------------- | ---------------------------------------------------------------------- | --------------------- |
| [Dashboard](/ja/products/managed-postgres/monitoring/dashboard)           | リソース使用量やデータベースアクティビティを確認できる Cloud Console 組み込みのチャート                    | なし                    |
| [クエリインサイト](/ja/products/managed-postgres/monitoring/query-insights)       | ステートメント単位のテレメトリー。影響度順に並べられた各クエリパターンと診断用カウンターを表示                        | なし                    |
| [Prometheus エンドポイント](/ja/products/managed-postgres/monitoring/prometheus) | メトリクスを Prometheus、Grafana、Datadog、または OpenMetrics 対応の collector にスクレイプ | API key + scraper の設定 |
| [Metrics reference](/ja/products/managed-postgres/monitoring/metrics)     | Prometheus エンドポイントで公開されるメトリクスの完全な一覧。types、labels、意味を含みます               | 該当なし                  |

<div id="quick-start">
  ## クイックスタート
</div>

Cloud Console を開き、任意の
Managed Postgres インスタンスの **監視** タブに移動すると、CPU、メモリ、IOPS、
接続数、トランザクション数、cache ヒット率、デッドロックのリアルタイムチャートを
確認できます。設定は不要です。

クエリごとのテレメトリー (レイテンシのパーセンタイル、cache とディスク読み取りの比較、
一時的な spill、並列ワーカーの使用率、WAL ボリューム) を確認するには、同じ
インスタンスの [クエリインサイト](/ja/products/managed-postgres/monitoring/query-insights) タブを
開きます。ホストレベルのメトリクスを独自の
オブザーバビリティスタックに取り込むには、
[Prometheus エンドポイント](/ja/products/managed-postgres/monitoring/prometheus)
を使用します。
