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

# Slow Requests Dashboard

export const InternalLink = ({version, path = "", children, ...props}) => {
  let detectedVersion = version || "stable";
  if (typeof window !== 'undefined' && !version) {
    const match = window.location.pathname.match(/\/docs\/([^/]+)/);
    if (match) {
      detectedVersion = match[1];
    }
  }
  const normalizedPath = path.startsWith("/") ? path.slice(1) : path;
  return <a href={`/docs/${detectedVersion}/${normalizedPath}`} {...props}>
      {children}
    </a>;
};

The **Slow Requests** dashboard lets you monitor important cluster tasks that take longer than expected to complete.

To view this dashboard, <InternalLink path="ui-overview#db-console-access">access the DB Console</InternalLink> and click **Metrics** on the left-hand navigation, and then select **Dashboard** > **Slow Requests**.

## Dashboard navigation

Use the **Graph** menu to display metrics for your entire cluster or for a specific node.

To the right of the Graph and Dashboard menus, a time interval selector allows you to filter the view for a predefined or custom time interval. Use the navigation buttons to move to the previous, next, or current time interval. When you select a time interval, the same interval is selected in the <InternalLink path="ui-overview#sql-activity">SQL Activity</InternalLink> pages. However, if you select 10 or 30 minutes, the interval defaults to 1 hour in SQL Activity pages.

Hovering your mouse pointer over the graph title will display a tooltip with a description and the <InternalLink path="essential-metrics-self-hosted ">metrics</InternalLink> used to create the graph.

When hovering on graphs, crosshair lines will appear at your mouse pointer. The series' values corresponding to the given time in the cross hairs are displayed in the legend under the graph. Hovering the mouse pointer on a given series displays the corresponding value near the mouse pointer and highlights the series line (graying out other series lines). Click anywhere within the graph to freeze the values in place. Click anywhere within the graph again to cause the values to change with your mouse movements once more.

In the legend, click on an individual series to isolate it on the graph. The other series will be hidden, while the hover will still work. Click the individual series again to make the other series visible. If there are many series, a scrollbar may appear on the right of the legend. This is to limit the size of the legend so that it does not get endlessly large, particularly on clusters with many nodes.

<Note>
  All timestamps in the DB Console are shown in Coordinated Universal Time (UTC).
</Note>

The **Slow Requests** dashboard displays the following time series graphs:

## Slow Raft Proposals

<img src="https://mintcdn.com/cockroachlabs/-SRWh43fl0WuNvCO/images/v26.2/ui_slow_raft.png?fit=max&auto=format&n=-SRWh43fl0WuNvCO&q=85&s=6f15a50b17ed1adbe87f2ce1af84f654" alt="DB Console slow Raft proposals graph" width="941" height="326" data-path="images/v26.2/ui_slow_raft.png" />

The **Slow Raft Proposals** graph displays requests that have been stuck for longer than usual in <InternalLink path="architecture/replication-layer#raft">Raft</InternalLink>.

Hovering over the graph displays values for the following metrics:

| Metric              | Description                                                                                                                                                                                                                                                                                                               |
| ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Slow Raft Proposals | The number of requests that have been stuck for longer than usual in <InternalLink path="architecture/replication-layer#raft">Raft</InternalLink>, as tracked by the `requests.slow.raft` metric. This can be a symptom of a <InternalLink path="architecture/replication-layer">leader-leaseholder split</InternalLink>. |

## Slow DistSender RPCs

<img src="https://mintcdn.com/cockroachlabs/-SRWh43fl0WuNvCO/images/v26.2/ui_slow_distsender.png?fit=max&auto=format&n=-SRWh43fl0WuNvCO&q=85&s=7bf554253b9e0d20dc76e1211b87febf" alt="DB Console slow DistSender RPCs graph" width="925" height="318" data-path="images/v26.2/ui_slow_distsender.png" />

The **Slow DistSender RPCs** graph displays requests that have been stuck for longer than usual in <InternalLink path="architecture/distribution-layer#distsender">`DistSender`</InternalLink>.

Hovering over the graph displays values for the following metrics:

| Metric               | Description                                                                                                                                                                                                            |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Slow DistSender RPCs | The number of requests that have been stuck for longer than usual in <InternalLink path="architecture/distribution-layer#distsender">`DistSender`</InternalLink>, as tracked by the `requests.slow.distsender` metric. |

## Slow Lease Acquisitions

<img src="https://mintcdn.com/cockroachlabs/-SRWh43fl0WuNvCO/images/v26.2/ui_slow_lease.png?fit=max&auto=format&n=-SRWh43fl0WuNvCO&q=85&s=ed77738a7d5f53842d1d8eb4b5c93e85" alt="DB Console slow lease acquisitions graph" width="936" height="323" data-path="images/v26.2/ui_slow_lease.png" />

The **Slow Lease Acquisitions** graph displays requests that have been stuck for longer than usual while attempting to acquire a <InternalLink path="architecture/replication-layer#leases">lease</InternalLink>.

Hovering over the graph displays values for the following metrics:

| Metric                  | Description                                                                                                                                                                                                                      |
| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Slow Lease Acquisitions | The number of requests that have been stuck for longer than usual while attempting to acquire a <InternalLink path="architecture/replication-layer#leases">lease</InternalLink>, as tracked by the `requests.slow.lease` metric. |

## Slow Latch Acquisitions

<img src="https://mintcdn.com/cockroachlabs/-SRWh43fl0WuNvCO/images/v26.2/ui_slow_latch.png?fit=max&auto=format&n=-SRWh43fl0WuNvCO&q=85&s=8704a361efdb65c0aac853f3ea1b9745" alt="DB Console slow latch acquisitions graph" width="940" height="326" data-path="images/v26.2/ui_slow_latch.png" />

The **Slow Latch Acquisitions** graph displays requests that have been stuck for longer than usual while attempting to acquire a <InternalLink path="architecture/transaction-layer#latch-manager">latch</InternalLink>.

Hovering over the graph displays values for the following metrics:

| Metric                  | Description                                                                                                                                                                             |
| ----------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Slow Latch Acquisitions | The number of requests that have been stuck for longer than usual while attempting to acquire a <InternalLink path="architecture/transaction-layer#latch-manager">latch</InternalLink>. |

## Summary and events

### Summary panel

A **Summary** panel of key metrics is displayed to the right of the timeseries graphs.

| Metric             | Description                                                                                                                                                            |
| ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Total Nodes        | The total number of nodes in the cluster. [Decommissioned nodes](node-shutdown.html?filters=decommission) are not included in this count.                              |
| Capacity Used      | The storage capacity used as a percentage of <InternalLink path="ui-cluster-overview-page#capacity-metrics">usable capacity</InternalLink> allocated across all nodes. |
| Unavailable Ranges | The number of unavailable ranges in the cluster. A non-zero number indicates an unstable cluster.                                                                      |
| Queries per second | The total number of `SELECT`, `UPDATE`, `INSERT`, and `DELETE` queries executed per second across the cluster.                                                         |
| P99 Latency        | The 99th percentile of service latency.                                                                                                                                |

If you are testing your deployment locally with multiple CockroachDB nodes running on a single machine (this is <InternalLink path="recommended-production-settings#topology">not recommended in production</InternalLink>), you must explicitly <InternalLink path="cockroach-start#store">set the store size</InternalLink> per node in order to display the correct capacity. Otherwise, the machine's actual disk capacity will be counted as a separate store for each node, thus inflating the computed capacity.

### Events panel

Underneath the [Summary](#summary-panel) panel, the **Events** panel lists the 5 most recent events logged for all nodes across the cluster. To list all events, click **View all events**.

<img src="https://mintcdn.com/cockroachlabs/4XH8VTm0CIsHBiqJ/images/v26.2/ui_events.png?fit=max&auto=format&n=4XH8VTm0CIsHBiqJ&q=85&s=7fb6a16474396ffa6cebef3aceff5f49" alt="DB Console Events" width="668" height="1036" data-path="images/v26.2/ui_events.png" />

The following types of events are listed:

* Database created
* Database dropped
* Table created
* Table dropped
* Table altered
* Index created
* Index dropped
* View created
* View dropped
* Schema change reversed
* Schema change finished
* Node joined
* Node decommissioned
* Node restarted
* Cluster setting changed

## See also

* <InternalLink path="troubleshooting-overview">Troubleshooting Overview</InternalLink>
* <InternalLink path="support-resources">Support Resources</InternalLink>
* <InternalLink path="monitoring-and-alerting#raw-status-endpoints">Raw Status Endpoints</InternalLink>
