Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Fix incorrect divide (#7)
Browse files Browse the repository at this point in the history
Similar to #6, fix incorrect divide
  • Loading branch information
vjanelle authored and afalko committed Apr 18, 2018
1 parent 9a3c7ed commit 29ab813
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dashboards/Kafka Partition Availability Benchmark.json
Original file line number Diff line number Diff line change
Expand Up @@ -832,28 +832,28 @@
"steppedLine": false,
"targets": [
{
"expr": "avg(rate(node_network_receive_bytes{device=\"eth0\",job=~\"zoo.+\"}[1h]))/3600",
"expr": "avg(rate(node_network_receive_bytes{device=\"eth0\",job=~\"zoo.+\"}[1h]))",
"format": "time_series",
"intervalFactor": 2,
"legendFormat": "Avg ZK network receive",
"refId": "B"
},
{
"expr": "avg(rate(node_network_transmit_bytes{device=\"eth0\",job=~\"zoo.+\"}[1h]))/3600",
"expr": "avg(rate(node_network_transmit_bytes{device=\"eth0\",job=~\"zoo.+\"}[1h]))",
"format": "time_series",
"intervalFactor": 2,
"legendFormat": "Avg ZK network transmit",
"refId": "C"
},
{
"expr": "avg(rate(node_network_receive_bytes{device=\"eth0\",job=~\"kafka.+\"}[1h]))/3600",
"expr": "avg(rate(node_network_receive_bytes{device=\"eth0\",job=~\"kafka.+\"}[1h]))",
"format": "time_series",
"intervalFactor": 2,
"legendFormat": "Avg Kafka network receive",
"refId": "A"
},
{
"expr": "avg(rate(node_network_transmit_bytes{device=\"eth0\",job=~\"kafka.+\"}[1h]))/3600",
"expr": "avg(rate(node_network_transmit_bytes{device=\"eth0\",job=~\"kafka.+\"}[1h]))",
"format": "time_series",
"intervalFactor": 2,
"legendFormat": "Avg Kafka network transmit",
Expand Down Expand Up @@ -1046,4 +1046,4 @@
"timezone": "",
"title": "Kafka Partition Availability Benchmark",
"version": 8
}
}

0 comments on commit 29ab813

Please sign in to comment.