aws-samples / aws-batch-operational-dashboards

https://aws.amazon.com/batch/
MIT No Attribution
11 stars 1 forks source link

EBS Read IOPS reported incorrectly #29

Closed cyberchip-wang closed 4 months ago

cyberchip-wang commented 5 months ago

There is a couple of places where the metric 'Ops' should be used. E.g., the template file batch-grafana-dashboard-template.json has the following section, where the EBSReadOps_Average should be used.

  "title": "EBS Read IOPS",
  "transformations": [
    {
      "id": "calculateField",
      "options": {
        "alias": "EBS Read IOPS",
        "binary": {
          "left": "EBSReadBytes_Average",
          "operator": "/",
          "reducer": "sum",
          "right": "60"
        },
        "mode": "binary",
        "reduce": {
          "include": [
            "EBSReadBytes_Average"
          ],
          "reducer": "sum"
        },
        "replaceFields": true
      }
    }
  ],
  "type": "timeseries"
}

],