> ## 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 サービス向けの Cloud Console 内蔵ダッシュボード

export const Image = ({img, alt, size}) => {
  return <Frame>
      <img src={img} alt={alt} />
    </Frame>;
};

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>;
};

インスタンスの左側のサイドバーにある**監視**タブには、
選択した期間におけるリソース使用状況とデータベースアクティビティの
リアルタイムグラフが表示されます。

<Image img="https://mintcdn.com/private-7c7dfe99-mintlify-8a08bda2/1Ag2q2dX2WMxuS9G/images/managed-postgres/monitoring/dashboard.png?fit=max&auto=format&n=1Ag2q2dX2WMxuS9G&q=85&s=ade7871a183632ad83f22995bcb38a57" alt="IOPS、CPU 使用率、メモリ、ディスク、ネットワークトラフィック、データベースサイズ、接続数、スループット、トランザクション数、キャッシュヒット率、デッドロックを表示する監視ダッシュボード" size="lg" border width="1592" height="1137" data-path="images/managed-postgres/monitoring/dashboard.png" />

<div id="panels">
  ## パネル
</div>

ダッシュボードでは、メトリクスを次のパネルに分類しています。

* **IOPS** — 1秒あたりのディスクの読み取りおよび書き込み操作数
* **CPU usage** — `user`、`system`、`iowait`、`softirq`、
  `steal` ごとの内訳
* **Memory usage** — 使用メモリ、キャッシュ、およびバッファが全体
  に占める割合
* **Disk usage** — サービスに割り当てられたストレージ容量に対する、
  使用済みファイルシステム領域の割合
* **Network traffic** — 送受信されたバイト数
* **Database size** — データベースごとのバイト数 (デフォルトの `postgres`
  およびユーザーが作成したすべてのデータベースを含む)
* **Connection count** — アクティブおよびアイドル状態の接続数
* **Operation throughput** — 1秒あたりのフェッチ、挿入、更新、
  削除の件数
* **Transactions** — 1秒あたりのコミット数およびロールバック数
* **キャッシュヒット率** — ディスクではなくバッファキャッシュから
  提供されたブロック読み取りの割合
* **Deadlocks** — サーバーによって検出されたデッドロック

<div id="time-period">
  ## 時間範囲
</div>

**時間範囲** セレクターを使うと、過去1時間、1日、1週間、またはカスタム範囲に切り替えられます。

<div id="related">
  ## 関連ページ
</div>

* [Prometheus エンドポイント](/ja/products/managed-postgres/monitoring/prometheus) — 同じメトリクスを独自のオブザーバビリティ スタックにもスクレイプできます
* [メトリクス リファレンス](/ja/products/managed-postgres/monitoring/metrics) — メトリクスの完全な一覧 (型とラベルを含む)
