Skip to content

Commit

Permalink
Fix Docker module: rename fields on dashboards (#30500) (#30507)
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Feb 21, 2022
1 parent d914deb commit 3cf0a48
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d

*Metricbeat*

- Enhance metricbeat on openshift documentation {pull}30054[30054]
- Fixed missing ZooKeeper metrics due compatibility issues with versions >= 3.6.0 {pull}30068[30068]
- Fix Docker module: rename fields on dashboards. {pull}30500[30500]

*Packetbeat*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"id": "1",
"params": {
"customLabel": "IN bytes",
"field": "docker.network.in.bytes"
"field": "docker.network.inbound.bytes"
},
"schema": "metric",
"type": "max"
Expand Down Expand Up @@ -69,7 +69,7 @@
"id": "4",
"params": {
"customLabel": "OUT bytes",
"field": "docker.network.out.bytes"
"field": "docker.network.outbound.bytes"
},
"schema": "metric",
"type": "max"
Expand Down Expand Up @@ -171,4 +171,4 @@
"type": "visualization",
"updated_at": "2021-08-04T16:31:07.529Z",
"version": "WzM3NjQsMV0="
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"id": "4",
"params": {
"customLabel": "DiskIO",
"field": "docker.diskio.total"
"field": "docker.diskio.summary.bytes"
},
"schema": "metric",
"type": "max"
Expand Down Expand Up @@ -117,4 +117,4 @@
"type": "visualization",
"updated_at": "2021-08-04T16:31:07.529Z",
"version": "WzM3NTgsMV0="
}
}

0 comments on commit 3cf0a48

Please sign in to comment.