Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker: remove deprecated fields #27933

Merged
merged 5 commits into from
Sep 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Add support for kube-state-metrics v2.0.0 {pull}27552[27552]
- Add User-Agent header to HTTP requests. {issue}18160[18160] {pull}27509[27509]
- Errors should be thrown as errors. Metricsets inside Metricbeat will now throw errors as the `error` log level. {pull}27804[27804]
- Remove deprecated fields in Docker module. {issue}11835[11835] {pull}27933[27933]

*Packetbeat*

Expand Down
137 changes: 0 additions & 137 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -12029,19 +12029,6 @@ type: long

--

*`docker.diskio.reads`*::
+
--

deprecated:[6.4]

Number of current reads per second


type: scaled_float

--

[float]
=== write

Expand Down Expand Up @@ -12111,19 +12098,6 @@ type: long

--

*`docker.diskio.writes`*::
+
--

deprecated:[6.4]

Number of current writes per second


type: scaled_float

--

[float]
=== summary

Expand Down Expand Up @@ -12193,19 +12167,6 @@ type: long

--

*`docker.diskio.total`*::
+
--

deprecated:[6.4]

Number of reads and writes per second


type: scaled_float

--

[float]
=== event

Expand Down Expand Up @@ -12703,104 +12664,6 @@ type: keyword

--

[float]
=== in

Incoming network stats per second.



*`docker.network.in.bytes`*::
+
--
Total number of incoming bytes.


type: long

format: bytes

--

*`docker.network.in.dropped`*::
+
--
Total number of dropped incoming packets.


type: scaled_float

--

*`docker.network.in.errors`*::
+
--
Total errors on incoming packets.


type: long

--

*`docker.network.in.packets`*::
+
--
Total number of incoming packets.


type: long

--

[float]
=== out

Outgoing network stats per second.



*`docker.network.out.bytes`*::
+
--
Total number of outgoing bytes.


type: long

format: bytes

--

*`docker.network.out.dropped`*::
+
--
Total number of dropped outgoing packets.


type: scaled_float

--

*`docker.network.out.errors`*::
+
--
Total errors on outgoing packets.


type: long

--

*`docker.network.out.packets`*::
+
--
Total number of outgoing packets.


type: long

--

[float]
=== inbound

Expand Down
21 changes: 3 additions & 18 deletions metricbeat/module/docker/diskio/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,12 @@
Total time to service IO requests, in nanoseconds
- name: wait_time
type: long
description: >
description: >
Total time requests spent waiting in queues for service, in nanoseconds
- name: queued
type: long
description: >
Total number of queued requests
- name: reads
type: scaled_float
deprecated: 6.4
description: >
Number of current reads per second
- name: write
type: group
description: >
Expand All @@ -63,17 +58,12 @@
Total time to service IO requests, in nanoseconds
- name: wait_time
type: long
description: >
description: >
Total time requests spent waiting in queues for service, in nanoseconds
- name: queued
type: long
description: >
Total number of queued requests
- name: writes
type: scaled_float
deprecated: 6.4
description: >
Number of current writes per second
- name: summary
type: group
description: >
Expand All @@ -98,14 +88,9 @@
Total time to service IO requests, in nanoseconds
- name: wait_time
type: long
description: >
description: >
Total time requests spent waiting in queues for service, in nanoseconds
- name: queued
type: long
description: >
Total number of queued requests
- name: total
type: scaled_float
deprecated: 6.4
description: >
Number of reads and writes per second
3 changes: 0 additions & 3 deletions metricbeat/module/docker/diskio/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ func eventsMapping(r mb.ReporterV2, blkioStatsList []BlkioStats) {

func eventMapping(r mb.ReporterV2, stats *BlkioStats) {
fields := common.MapStr{
"reads": stats.reads,
"writes": stats.writes,
"total": stats.totals,
"read": common.MapStr{
"ops": stats.serviced.reads,
"bytes": stats.servicedBytes.reads,
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/docker/fields.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 0 additions & 46 deletions metricbeat/module/docker/network/_meta/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,52 +9,6 @@
type: keyword
description: >
Network interface name.
- name: in
type: group
deprecated: 6.4
description: >
Incoming network stats per second.
fields:
- name: bytes
type: long
format: bytes
description: >
Total number of incoming bytes.
- name: dropped
type: scaled_float
description: >
Total number of dropped incoming packets.
- name: errors
type: long
description: >
Total errors on incoming packets.
- name: packets
type: long
description: >
Total number of incoming packets.
- name: out
type: group
deprecated: 6.4
description: >
Outgoing network stats per second.
fields:
- name: bytes
type: long
format: bytes
description: >
Total number of outgoing bytes.
- name: dropped
type: scaled_float
description: >
Total number of dropped outgoing packets.
- name: errors
type: long
description: >
Total errors on outgoing packets.
- name: packets
type: long
description: >
Total number of outgoing packets.
- name: inbound
type: group
description: >
Expand Down
14 changes: 0 additions & 14 deletions metricbeat/module/docker/network/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,6 @@ func eventMapping(r mb.ReporterV2, stats *NetStats) {
RootFields: stats.Container.ToMapStr(),
MetricSetFields: common.MapStr{
"interface": stats.NameInterface,
// Deprecated
"in": common.MapStr{
"bytes": stats.RxBytes,
"dropped": stats.RxDropped,
"errors": stats.RxErrors,
"packets": stats.RxPackets,
},
// Deprecated
"out": common.MapStr{
"bytes": stats.TxBytes,
"dropped": stats.TxDropped,
"errors": stats.TxErrors,
"packets": stats.TxPackets,
},
"inbound": common.MapStr{
"bytes": stats.Total.RxBytes,
"dropped": stats.Total.RxDropped,
Expand Down