Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
douglascamata committed Sep 27, 2023
1 parent e364b9c commit 14c05c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ function() {
g.stack
)
.addPanel(
g.panel('Rate of fetches', 'Rate of rule fetches via PrometheusRule CRDs from the local cluster') +
g.panel('Rate of fetches', 'Rate of rule fetches via PrometheusRule CRs from the local cluster') +
g.queryPanel(
[
'sum(rate(obsctl_reloader_prom_rule_fetches_total{namespace=~"$namespace",job=~"$job"}[$__rate_interval])) by (namespace,job,pod)',
Expand All @@ -804,7 +804,7 @@ function() {
g.addDashboardLink(thanos.obsctlReloader.dashboard.title)
)
.addPanel(
g.panel('Percentage of failed fetches', 'Percentage of failed rule fetches via PrometheusRule CRDs from the local cluster') +
g.panel('Percentage of failed fetches', 'Percentage of failed rule fetches via PrometheusRule CRs from the local cluster') +
g.queryPanel(
[
'100 * sum(rate(obsctl_reloader_prom_rule_fetch_failures_total{namespace=~"$namespace",job=~"$job"}[$__rate_interval])) by (namespace,job,pod) / ignoring (job, pod) group_left sum(rate(obsctl_reloader_prom_rule_fetches_total{namespace=~"$namespace",job=~"$job"}[$__rate_interval])) by (namespace) > 0',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8519,7 +8519,7 @@ data:
"dashLength": 10,
"dashes": false,
"datasource": "$datasource",
"description": "Rate of rule fetches via PrometheusRule CRDs from the local cluster",
"description": "Rate of rule fetches via PrometheusRule CRs from the local cluster",
"fill": 1,
"id": 84,
"legend": {
Expand Down Expand Up @@ -8611,7 +8611,7 @@ data:
"dashLength": 10,
"dashes": false,
"datasource": "$datasource",
"description": "Percentage of failed rule fetches via PrometheusRule CRDs from the local cluster",
"description": "Percentage of failed rule fetches via PrometheusRule CRs from the local cluster",
"fill": 1,
"id": 85,
"legend": {
Expand Down

0 comments on commit 14c05c4

Please sign in to comment.