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 2 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
6 changes: 5 additions & 1 deletion packages/docker/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# newer versions go on top
- version: 2.12.1
changes:
- description: Update docker network fields.
type: enhancement
- version: 2.12.0
changes:
- description: Use ecs definition of the 'event.dataset' field.
type: enhancement
link: https://github.com/elastic/integrations/pull/11672
link: https://github.com/elastic/integrations/pull/12183
- 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
44 changes: 44 additions & 0 deletions packages/docker/data_stream/network/fields/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,50 @@
dimension: true
description: |
Network interface name.
- name: in
type: group
description: >
Incoming network stats per second.
fields:
- name: bytes
type: long
format: bytes
description: >
Incoming bytes per seconds.
- name: dropped
type: scaled_float
description: >
Dropped incoming packets per second.
- name: errors
type: long
description: >
Errors on incoming packets per second.
- name: packets
type: long
description: >
Incoming packets per second.
- name: out
type: group
description: >
Outgoing network stats per second.
fields:
- name: bytes
type: long
format: bytes
description: >
Outgoing bytes per second.
- name: dropped
type: scaled_float
description: >
Dropped outgoing packets per second.
- name: errors
type: long
description: >
Errors on outgoing packets per second.
- name: packets
type: long
description: >
Outgoing packets per second.
- name: inbound
type: group
fields:
Expand Down
2 changes: 1 addition & 1 deletion packages/docker/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: docker
title: Docker
version: 2.12.0
version: 2.12.1
description: Collect metrics and logs from Docker instances with Elastic Agent.
type: integration
icons:
Expand Down