Skip to content

Commit

Permalink
Update queries.libsonnet: typo fixed (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
aermolaev authored Dec 16, 2024
1 parent f0fb5ab commit d20e609
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/runtimeDashboard/output.json
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@
"type": "prometheus",
"uid": "$datasource"
},
"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",
"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",
"legendFormat": "{{cluster}} - {{namespace}}\n"
}
],
Expand Down
2 changes: 1 addition & 1 deletion examples/runtimeDashboard/queries.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ local variables = import './variables.libsonnet';
prometheusQuery.new(
'$' + variables.datasource.name,
|||
sum by (cluster, namesapce, job,le,controller) (
sum by (cluster, namespace, job, le, controller) (
rate(
controller_runtime_reconcile_time_seconds_bucket{
cluster=~"$cluster",
Expand Down

0 comments on commit d20e609

Please sign in to comment.