Skip to content

DOC-14237 Phase 4: Update the Cluster Virtualization metrics and cluster settings pages for v25.3.0 #19998

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/current/_config_cockroachdb.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
baseurl: /docs
current_cloud_version: v25.2
current_cloud_version: v25.3
destination: _site/docs
homepage_title: CockroachDB Docs
versions:
Expand Down
460 changes: 460 additions & 0 deletions src/current/_data/v25.3/cluster-settings.csv

Large diffs are not rendered by default.

17,558 changes: 17,558 additions & 0 deletions src/current/_data/v25.3/metrics/metrics.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/current/_includes/cockroachcloud/metrics-tab.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{% assign version = site.current_cloud_version | replace: ".", "" %}
{% assign graphs = site.data[version].metrics.metrics | where_exp: "graphs", "graphs.metric_ui_tab contains tab" | map: "metric_ui_graph" | uniq %}
{% assign graphs = site.data[version].metrics.metrics-cloud | where_exp: "graphs", "graphs.metric_ui_tab contains tab" | map: "metric_ui_graph" | uniq %}

{% for g in graphs %} {% comment %} Iterate through the graphs. {% endcomment %}

## {{ g }}

{% assign metrics = site.data[version].metrics.metrics | where: "metric_ui_graph", g %}
{% assign metrics = site.data[version].metrics.metrics-cloud | where: "metric_ui_graph", g %}
{% comment %} Fetch all metrics for given metric_ui_tab. {% endcomment %}

<table markdown="1">
Expand Down
4 changes: 2 additions & 2 deletions src/current/cockroachcloud/metrics-essential.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ toc: true
These essential CockroachDB metrics let you monitor your CockroachDB {{ site.data.products.standard }} cluster. The metrics are available on graphs on the tabs listed in the **Metrics tabs** column. Where **Custom** is listed, the metric may be graphed in a [**Custom Metrics Chart**]({% link cockroachcloud/custom-metrics-chart-page.md %}). The **Usage** column explains why each metric is important to visualize and how to make both practical and actionable use of the metric in a production deployment.

{% assign version = site.current_cloud_version | replace: ".", "" %}
{% assign types = site.data[version].metrics.metrics | map: "metric_type" | uniq %}
{% assign types = site.data[version].metrics.metrics-cloud | map: "metric_type" | uniq %}
{% comment %} Fetch the list of all metric types {% endcomment %}

{% for t in types %} {% comment %} Iterate through the types. {% endcomment %}
{% unless t contains "Request Units" %} {% comment %} Request Units is only for Basic tier. {% endcomment %}
## {{ t }}

{% assign metrics = site.data[version].metrics.metrics | where: "metric_type", t | sort: "metric_id" | where_exp: "metrics", "metrics.deploy_standard == true"%}
{% assign metrics = site.data[version].metrics.metrics-cloud | where: "metric_type", t | sort: "metric_id" | where_exp: "metrics", "metrics.deploy_standard == true"%}
{% comment %} Fetch all metrics for that metric_type. {% endcomment %}

<table markdown="1">
Expand Down
Loading
Loading