Skip to content

Commit

Permalink
Fix Docker module: rename fields on dashboards (#30500)
Browse files Browse the repository at this point in the history
* Fix Docker module: rename fields on dashboards

* Fix CHANGELOG
  • Loading branch information
mtojek authored Feb 21, 2022
1 parent 452d447 commit 74f13cf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...main[Check the HEAD dif

- 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 74f13cf

Please sign in to comment.