Skip to content

Commit d20e609

Browse files
authoredDec 16, 2024
Update queries.libsonnet: typo fixed (grafana#237)
1 parent f0fb5ab commit d20e609

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎examples/runtimeDashboard/output.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@
602602
"type": "prometheus",
603603
"uid": "$datasource"
604604
},
605-
"expr": "sum by (cluster, namesapce, job,le,controller) (\n rate(\n controller_runtime_reconcile_time_seconds_bucket{\n cluster=~\"$cluster\",\n namespace=~\"$namespace\",\n job=~\"$job\"\n }\n [$__rate_interval])\n)\n",
605+
"expr": "sum by (cluster, namespace, job, le, controller) (\n rate(\n controller_runtime_reconcile_time_seconds_bucket{\n cluster=~\"$cluster\",\n namespace=~\"$namespace\",\n job=~\"$job\"\n }\n [$__rate_interval])\n)\n",
606606
"legendFormat": "{{cluster}} - {{namespace}}\n"
607607
}
608608
],

‎examples/runtimeDashboard/queries.libsonnet

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ local variables = import './variables.libsonnet';
229229
prometheusQuery.new(
230230
'$' + variables.datasource.name,
231231
|||
232-
sum by (cluster, namesapce, job,le,controller) (
232+
sum by (cluster, namespace, job, le, controller) (
233233
rate(
234234
controller_runtime_reconcile_time_seconds_bucket{
235235
cluster=~"$cluster",

0 commit comments

Comments
 (0)
Please sign in to comment.