Skip to content

Latest commit

 

History

History
130 lines (75 loc) · 7.53 KB

admin-ui-hardware-dashboard.md

File metadata and controls

130 lines (75 loc) · 7.53 KB
title summary toc
Hardware Dashboard
The Hardware dashboard lets you monitor CPU usage, disk throughput, network traffic, storage capacity, and memory.
true

The Hardware dashboard lets you monitor the hardware utilization of your cluster. This includes CPU usage, disk throughput, network traffic, storage capacity, and memory.

To view this dashboard, access the Admin UI, click Metrics in the left-hand navigation, and select Dashboard > Hardware.

{% include {{ page.version.version }}/admin-ui/admin-ui-metrics-navigation.md %}

The Hardware dashboard displays the following time series graphs:

CPU Percent

CockroachDB Admin UI CPU Percent graph

{{site.data.alerts.callout_info}} This graph shows the CPU consumption by the CockroachDB process only and is useful as long as there are no other processes consuming significant CPU on the node. In case you have other processes running on the node, use a separate monitoring tool to measure the total CPU consumption across all processes. {{site.data.alerts.end}}

  • In the node view, the graph shows the percentage of CPU in use by the CockroachDB process for the selected node.

  • In the cluster view, the graph shows the percentage of CPU in use by the CockroachDB process across all nodes.

{{site.data.alerts.callout_info}} For multi-core systems, the percentage of CPU usage is calculated by normalizing the CPU usage across all cores, whereby 100% utilization indicates that all cores are fully utilized. {{site.data.alerts.end}}

Memory Usage

CockroachDB Admin UI Memory Usage graph

{{site.data.alerts.callout_info}} This graph shows the memory consumption by the CockroachDB process only and is useful as long as there are no other processes consuming significant memory on the node. In case you have other processes running on the node, use a separate monitoring tool to measure the total memory consumption across all processes. {{site.data.alerts.end}}

  • In the node view, the graph shows the memory in use by CockroachDB for the selected node.

  • In the cluster view, the graph shows the memory in use by CockroachDB across all nodes in the cluster.

Disk Read Bytes

CockroachDB Admin UI Disk Read Bytes graph

  • In the node view, the graph shows the 10-second average of the number of bytes read per second by all processes, including CockroachDB, for the selected node.

  • In the cluster view, the graph shows the 10-second average of the number of bytes read per second by all processes, including CockroachDB, across all nodes.

Disk Write Bytes

CockroachDB Admin UI Disk Write Bytes graph

  • In the node view, the graph shows the 10-second average of the number of bytes written per second by all processes, including CockroachDB, for the node.

  • In the cluster view, the graph shows the 10-second average of the number of bytes written per second by all processes, including CockroachDB, across all nodes.

Disk Read Ops

CockroachDB Admin UI Disk Read Ops graph

  • In the node view, the graph shows the 10-second average of the number of disk read ops per second for all processes, including CockroachDB, for the selected node.

  • In the cluster view, the graph shows the 10-second average of the number of disk read ops per second for all processes, including CockroachDB, across all nodes.

Disk Write Ops

CockroachDB Admin UI Disk Write Ops graph

  • In the node view, the graph shows the 10-second average of the number of disk write ops per second for all processes, including CockroachDB, for the node.

  • In the cluster view, the graph shows the 10-second average of the number of disk write ops per second for all processes, including CockroachDB, across all nodes.

Disk IOPS in Progress

CockroachDB Admin UI Disk IOPS in Progress graph

  • In the node view, the graph shows the number of disk reads and writes in queue for all processes, including CockroachDB, for the selected node.

  • In the cluster view, the graph shows the number of disk reads and writes in queue for all processes, including CockroachDB, across all nodes in the cluster.

{{site.data.alerts.callout_info}} For Mac OS, this graph is not populated and shows zero disk IOPS in progress. This is a known limitation that may be lifted in the future. {{site.data.alerts.end}}

Available Disk Capacity

CockroachDB Admin UI Disk Capacity graph

Metric Description
Available Disk Capacity Free disk space available to CockroachDB data on each node.

Capacity metrics

The available disk capacity equals the amount of empty disk space, up to the value of the maximum store size. The store size is determined as follows:

  • If a store size was specified using the --store flag when starting nodes, this value is used as the limit for CockroachDB data.
  • If no store size has been explicitly set, the actual disk capacity is used as the limit for CockroachDB data.

The disk usage of the Cockroach binary, operating system, and other system files is not shown on the Available Disk Capacity graph.

{{site.data.alerts.callout_info}} {% include {{ page.version.version }}/misc/available-capacity-metric.md %} {{site.data.alerts.end}}

Network Bytes Received

CockroachDB Admin UI Network Bytes Received graph

  • In the node view, the graph shows the 10-second average of the number of network bytes received per second for all processes, including CockroachDB, for the node.

  • In the cluster view, the graph shows the 10-second average of the number of network bytes received for all processes, including CockroachDB, per second across all nodes.

Network Bytes Sent

CockroachDB Admin UI Network Bytes Sent graph

  • In the node view, the graph shows the 10-second average of the number of network bytes sent per second by all processes, including CockroachDB, for the node.

  • In the cluster view, the graph shows the 10-second average of the number of network bytes sent per second by all processes, including CockroachDB, across all nodes.

{% include {{ page.version.version }}/admin-ui/admin-ui-summary-events.md %}

See also