Skip to content

Commit

Permalink
Merge pull request cockroachdb#11010 from cockroachdb/observability-r…
Browse files Browse the repository at this point in the history
…elease-notes

various DB Console release updates
  • Loading branch information
taroface authored Aug 5, 2021
2 parents 984696a + 99cd57d commit f0d5188
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 15 deletions.
8 changes: 4 additions & 4 deletions _includes/sidebar-data-v20.2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2748,15 +2748,15 @@
]
},
{
"title": "Statements Page",
"title": "Transactions Page",
"urls": [
"/${VERSION}/ui-statements-page.html"
"/${VERSION}/ui-transactions-page.html"
]
},
{
"title": "Transactions Page",
"title": "Statements Page",
"urls": [
"/${VERSION}/ui-transactions-page.html"
"/${VERSION}/ui-statements-page.html"
]
},
{
Expand Down
8 changes: 4 additions & 4 deletions _includes/sidebar-data-v21.1.json
Original file line number Diff line number Diff line change
Expand Up @@ -2942,15 +2942,15 @@
]
},
{
"title": "Statements Page",
"title": "Transactions Page",
"urls": [
"/${VERSION}/ui-statements-page.html"
"/${VERSION}/ui-transactions-page.html"
]
},
{
"title": "Transactions Page",
"title": "Statements Page",
"urls": [
"/${VERSION}/ui-transactions-page.html"
"/${VERSION}/ui-statements-page.html"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion v21.1/cockroach-demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ $ cockroach demo ycsb
$ cockroach demo --with-load
~~~

This command starts a demo cluster with the `movr` database preloaded and then inserts rows into each table in the `movr` database. You can monitor the workload progress on the [DB Console](ui-overview-dashboard.html#sql-queries).
This command starts a demo cluster with the `movr` database preloaded and then inserts rows into each table in the `movr` database. You can monitor the workload progress on the [DB Console](ui-overview-dashboard.html#sql-statements).

When running a multi-node demo cluster, load is balanced across all nodes.

Expand Down
4 changes: 1 addition & 3 deletions v21.1/ui-cluster-overview-page.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ Nodes are considered dead once they have not [updated their liveness record](clu

The following details are also shown.

<img src="{{ 'images/v21.1/ui-node-list.png' | relative_url }}" alt="DB Console node list" style="border:1px solid #eee;max-width:100%" />

Column | Description
-------|------------
Node Count | Number of nodes in the locality.
Expand All @@ -87,7 +85,7 @@ Uptime | Amount of time the node has been running.
Replicas | Number of replicas on the node or in the locality.
Capacity Usage | Percentage of usable disk space occupied by CockroachDB data on the node or in the locality. See [Capacity metrics](#capacity-metrics).
Memory Usage | Memory used by CockroachDB as a percentage of the total memory on the node or in the locality.
CPUs | Number of vCPUs on the machine.
vCPUs | Number of vCPUs on the machine.
Version | Build tag of the CockroachDB version installed on the node.

### Decommissioned Nodes
Expand Down
2 changes: 1 addition & 1 deletion v21.1/ui-databases-page.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Click any table name in [Tables](#tables-view) view to display details for that

<img src="{{ 'images/v21.1/ui_database_tables_details.png' | relative_url }}" alt="DB Console Database Tables View" style="border:1px solid #eee;max-width:100%" />

- **Overview** displays the SQL statements used to [create and define the table](create-table.html), as well as [partitioning](partitioning.html) info and [zone configurations](configure-replication-zones.html). In addition, the following metrics are displayed:
- **Overview** displays the SQL statements used to [create and define the table](create-table.html), as well as [partitioning](partitioning.html) info, [zone configurations](configure-replication-zones.html), constraints, and lease preferences. In addition, the following metrics are displayed:
- **Size** is the approximate disk size of all replicas of this table on the cluster.
- **Ranges** is the number of [ranges](architecture/overview.html#terms) in this table.
- **Replicas** is the number of [replicas](architecture/replication-layer.html) of this table on the cluster.
Expand Down
2 changes: 1 addition & 1 deletion v21.1/ui-jobs-page.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ A job that is currently running will be displayed with its percent completion an

Click any description on the [jobs list](#jobs-list) to see the full SQL statement that created the job.

The job ID, creation time, users, and status are also shown.
The job ID, creation time, users, status, and error messages (if any) are also shown.

<img src="{{ 'images/v21.1/ui_jobs_page_details.png' | relative_url }}" alt="DB Console Jobs Page" style="border:1px solid #eee;max-width:100%" />

Expand Down
2 changes: 1 addition & 1 deletion v21.1/ui-overview-dashboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ All timestamps in the DB Console are shown in Coordinated Universal Time (UTC).

The **Overview** dashboard displays the following time series graphs:

## SQL Queries
## SQL Statements

- In the node view, the graph shows the 10-second average of the number of `SELECT`/`INSERT`/`UPDATE`/`DELETE` queries per second issued by SQL clients on the node.

Expand Down
1 change: 1 addition & 0 deletions v21.1/ui-runtime-dashboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ Sys CPU Time | Total CPU seconds per second used for CockroachDB system-level op
The **Runtime** dashboard shows other time series graphs that are important for CockroachDB developers:

- Goroutine Count
- Runnable Goroutines per CPU
- GC Runs
- GC Pause Time

Expand Down

0 comments on commit f0d5188

Please sign in to comment.