Skip to content

Commit

Permalink
dev-2.9: Fix cluster load average
Browse files Browse the repository at this point in the history
  • Loading branch information
skanakal committed Feb 3, 2025
1 parent f43a8f0 commit a41f81d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,15 +168,15 @@
"steppedLine": false,
"targets": [
{
"expr": "sum(node_load5 OR avg_over_time(windows_system_processor_queue_length[5m])) by (instance)",
"expr": "sum(node_load1 OR avg_over_time(windows_system_processor_queue_length[1m])) by (instance)",
"interval": "",
"legendFormat": "Load[5m] ({{instance}})",
"legendFormat": "Load[1m] ({{instance}})",
"refId": "A"
},
{
"expr": "sum(node_load1 OR avg_over_time(windows_system_processor_queue_length[1m])) by (instance)",
"expr": "sum(node_load5 OR avg_over_time(windows_system_processor_queue_length[5m])) by (instance)",
"interval": "",
"legendFormat": "Load[1m] ({{instance}})",
"legendFormat": "Load[5m] ({{instance}})",
"refId": "B"
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,15 +164,15 @@
"steppedLine": false,
"targets": [
{
"expr": "sum(node_load5 OR avg_over_time(windows_system_processor_queue_length[5m]))",
"expr": "sum(node_load1 OR avg_over_time(windows_system_processor_queue_length[1m]))",
"interval": "",
"legendFormat": "Load[5m]",
"legendFormat": "Load[1m]",
"refId": "A"
},
{
"expr": "sum(node_load1 OR avg_over_time(windows_system_processor_queue_length[1m]))",
"expr": "sum(node_load5 OR avg_over_time(windows_system_processor_queue_length[5m]))",
"interval": "",
"legendFormat": "Load[1m]",
"legendFormat": "Load[5m]",
"refId": "B"
},
{
Expand Down

0 comments on commit a41f81d

Please sign in to comment.