Skip to content
Open
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
5 changes: 5 additions & 0 deletions packages/system/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "2.7.1"
changes:
- description: Fix network data stream interface filtering by populating both legacy top-level `interfaces` and nested `network.interfaces` fields.
type: bugfix
link: https://github.com/elastic/integrations/pull/15883
- version: "2.7.0"
changes:
- description: Add NTP data stream.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
metricsets: ["network"]
period: {{period}}
{{! Populate both 'interfaces' and 'network.interfaces'. Beats currently exposes 'interfaces' as a top-level field instead of nesting it under 'network', so duplicating it keeps existing Beats behavior working. Once Beats aligns on the nested field, we can drop the legacy top-level field. }}
interfaces:
{{#each network.interfaces}}
- {{this}}
{{/each}}
{{! 'network.interfaces' is currently being populated for future use or compatibility, but may not be actively used by Beats yet. }}
network.interfaces:
{{#each network.interfaces}}
- {{this}}
Expand Down
3 changes: 1 addition & 2 deletions packages/system/data_stream/network/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ streams:
required: false
show_user: true
description: >
List of interfaces to monitor. Will monitor all by default.

List of interfaces to monitor. If not set, all interfaces are monitored by default.
- name: tags
type: text
title: Tags
Expand Down
2 changes: 1 addition & 1 deletion packages/system/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 3.0.2
name: system
title: System
version: "2.7.0"
version: "2.7.1"
description: Collect system logs and metrics from your servers with Elastic Agent.
type: integration
categories:
Expand Down