diff --git a/.github/scripts/grafana/dashboards/main-dashboard.json b/.github/scripts/grafana/dashboards/main-dashboard.json index 5ddb81dab5..a1347c8d1c 100644 --- a/.github/scripts/grafana/dashboards/main-dashboard.json +++ b/.github/scripts/grafana/dashboards/main-dashboard.json @@ -312,19 +312,19 @@ "steppedLine": false, "targets": [ { - "expr": "irate(ghost_process_cpu_user_seconds_total{job=~\"$job\"}[1m]) * 100", + "expr": "rate(ghost_process_cpu_user_seconds_total{job=~\"$job\"}[1m]) * 100", "interval": "", "legendFormat": "User CPU - {{job}}", "refId": "A" }, { - "expr": "irate(ghost_process_cpu_system_seconds_total{job=~\"$job\"}[1m]) * 100", + "expr": "rate(ghost_process_cpu_system_seconds_total{job=~\"$job\"}[1m]) * 100", "interval": "", "legendFormat": "System CPU - {{job}}", "refId": "B" }, { - "expr": "irate(ghost_process_cpu_seconds_total{job=~\"$job\"}[1m]) * 100", + "expr": "rate(ghost_process_cpu_seconds_total{job=~\"$job\"}[1m]) * 100", "interval": "", "legendFormat": "Total CPU - {{job}}", "refId": "C"