Skip to content

Commit

Permalink
Dashboards: renamed rows in the "Remote ruler reads" and "Remote rule…
Browse files Browse the repository at this point in the history
…r reads resources" dashboards to match the actual component names (#7750)

Signed-off-by: Marco Pracucci <[email protected]>
  • Loading branch information
pracucci authored Apr 2, 2024
1 parent fb7dbaa commit 8f99ae9
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 28 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
* `MimirIngesterFailsToProcessRecordsFromKafka`
* `MimirIngesterFailsEnforceStrongConsistencyOnReadPath`
* [ENHANCEMENT] Dashboards: add in-flight queries scaling metric panel for ruler-querier. #7749
* [ENHANCEMENT] Dashboards: renamed rows in the "Remote ruler reads" and "Remote ruler reads resources" dashboards to match the actual component names. #7750
* [BUGFIX] Dashboards: Fix regular expression for matching read-path gRPC ingester methods to include querying of exemplars, label-related queries, or active series queries. #7676
* [BUGFIX] Dashboards: Fix user id abbreviations and column heads for Top Tenants dashboard. #7724

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23638,7 +23638,7 @@ data:
"repeatIteration": null,
"repeatRowId": null,
"showTitle": true,
"title": "Query-frontend (dedicated to ruler)",
"title": "Ruler-query-frontend",
"titleSize": "h6"
},
{
Expand Down Expand Up @@ -23920,7 +23920,7 @@ data:
"repeatIteration": null,
"repeatRowId": null,
"showTitle": true,
"title": "Query-scheduler (dedicated to ruler)",
"title": "Ruler-query-scheduler",
"titleSize": "h6"
},
{
Expand Down Expand Up @@ -24202,7 +24202,7 @@ data:
"repeatIteration": null,
"repeatRowId": null,
"showTitle": true,
"title": "Querier (dedicated to ruler)",
"title": "Ruler-querier",
"titleSize": "h6"
}
],
Expand Down Expand Up @@ -24772,7 +24772,7 @@ data:
"repeatIteration": null,
"repeatRowId": null,
"showTitle": true,
"title": "Query-frontend (dedicated to ruler)",
"title": "Ruler-query-frontend",
"titleSize": "h6"
},
{
Expand Down Expand Up @@ -25100,7 +25100,7 @@ data:
"repeatIteration": null,
"repeatRowId": null,
"showTitle": true,
"title": "Query-scheduler (dedicated to ruler)",
"title": "Ruler-query-scheduler",
"titleSize": "h6"
},
{
Expand Down Expand Up @@ -25262,7 +25262,7 @@ data:
"repeatIteration": null,
"repeatRowId": null,
"showTitle": true,
"title": "Query-scheduler Latency (Time in Queue) Breakout by Additional Queue Dimensions",
"title": "Ruler-query-scheduler Latency (Time in Queue) Breakout by Additional Queue Dimensions",
"titleSize": "h6"
},
{
Expand Down Expand Up @@ -25569,7 +25569,7 @@ data:
"repeatIteration": null,
"repeatRowId": null,
"showTitle": true,
"title": "Querier (dedicated to ruler)",
"title": "Ruler-querier",
"titleSize": "h6"
},
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ local filename = 'mimir-remote-ruler-reads-resources.json';
($.dashboard('Remote ruler reads resources') + { uid: std.md5(filename) })
.addClusterSelectorTemplates(false)
.addRow(
$.row('Query-frontend (dedicated to ruler)')
$.row('Ruler-query-frontend')
.addPanel(
$.containerCPUUsagePanelByComponent('ruler_query_frontend'),
)
Expand All @@ -19,7 +19,7 @@ local filename = 'mimir-remote-ruler-reads-resources.json';
)
)
.addRow(
$.row('Query-scheduler (dedicated to ruler)')
$.row('Ruler-query-scheduler')
.addPanel(
$.containerCPUUsagePanelByComponent('ruler_query_scheduler'),
)
Expand All @@ -31,7 +31,7 @@ local filename = 'mimir-remote-ruler-reads-resources.json';
)
)
.addRow(
$.row('Querier (dedicated to ruler)')
$.row('Ruler-querier')
.addPanel(
$.containerCPUUsagePanelByComponent('ruler_querier'),
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ local filename = 'mimir-remote-ruler-reads.json';
)
)
.addRow(
$.row('Query-frontend (dedicated to ruler)')
$.row('Ruler-query-frontend')
.addPanel(
$.timeseriesPanel('Requests / sec') +
$.qpsPanel('cortex_request_duration_seconds_count{%s, route=~"%s"}' % [$.jobMatcher($._config.job_names.ruler_query_frontend), rulerRoutesRegex])
Expand All @@ -80,7 +80,7 @@ local filename = 'mimir-remote-ruler-reads.json';
these panels will show "No data."
</p>
|||;
$.row('Query-scheduler (dedicated to ruler)')
$.row('Ruler-query-scheduler')
.addPanel(
local title = 'Requests / sec';
$.timeseriesPanel(title) +
Expand Down Expand Up @@ -127,7 +127,7 @@ local filename = 'mimir-remote-ruler-reads.json';
regex: '^$',
},
];
$.row('Query-scheduler Latency (Time in Queue) Breakout by Additional Queue Dimensions')
$.row('Ruler-query-scheduler Latency (Time in Queue) Breakout by Additional Queue Dimensions')
.addPanel(
local title = '99th Percentile Latency by Queue Dimension';
$.timeseriesPanel(title) +
Expand Down Expand Up @@ -169,7 +169,7 @@ local filename = 'mimir-remote-ruler-reads.json';
)
)
.addRow(
$.row('Querier (dedicated to ruler)')
$.row('Ruler-querier')
.addPanel(
$.timeseriesPanel('Requests / sec') +
$.qpsPanel('cortex_querier_request_duration_seconds_count{%s, route=~"%s"}' % [$.jobMatcher($._config.job_names.ruler_querier), $.queries.read_http_routes_regex])
Expand Down

0 comments on commit 8f99ae9

Please sign in to comment.