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

Add new docker network in and out group fields #12183

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Fix changelog
  • Loading branch information
MichaelKatsoulis committed Dec 23, 2024
commit d31c73fac36e80b2d9289c1c5fbc417c18526b0d
3 changes: 2 additions & 1 deletion packages/docker/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
changes:
- description: Update docker network fields.
type: enhancement
link: https://github.com/elastic/integrations/pull/12183
- version: 2.12.0
changes:
- description: Use ecs definition of the 'event.dataset' field.
type: enhancement
link: https://github.com/elastic/integrations/pull/12183
link: https://github.com/elastic/integrations/pull/11672
- version: 2.11.0
changes:
- description: Bump package-spec version to 3.2.2 to run on Serverless and stack version 9.0.
Expand Down
8 changes: 8 additions & 0 deletions packages/docker/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1015,11 +1015,19 @@ The Docker `network` data stream collects network metrics.
| data_stream.namespace | Data stream namespace. | constant_keyword | |
| data_stream.type | Data stream type. | constant_keyword | |
| docker.container.labels.\* | Container labels | object | |
| docker.network.in.bytes | Incoming bytes per seconds. | long | |
| docker.network.in.dropped | Dropped incoming packets per second. | scaled_float | |
| docker.network.in.errors | Errors on incoming packets per second. | long | |
| docker.network.in.packets | Incoming packets per second. | long | |
| docker.network.inbound.bytes | Total number of incoming bytes. | long | counter |
| docker.network.inbound.dropped | Total number of dropped incoming packets. | long | counter |
| docker.network.inbound.errors | Total errors on incoming packets. | long | counter |
| docker.network.inbound.packets | Total number of incoming packets. | long | counter |
| docker.network.interface | Network interface name. | keyword | |
| docker.network.out.bytes | Outgoing bytes per second. | long | |
| docker.network.out.dropped | Dropped outgoing packets per second. | scaled_float | |
| docker.network.out.errors | Errors on outgoing packets per second. | long | |
| docker.network.out.packets | Outgoing packets per second. | long | |
| docker.network.outbound.bytes | Total number of outgoing bytes. | long | counter |
| docker.network.outbound.dropped | Total number of dropped outgoing packets. | long | counter |
| docker.network.outbound.errors | Total errors on outgoing packets. | long | counter |
Expand Down