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

Fix formatting of filesystem ignore types #10180

Merged
merged 2 commits into from
Jun 20, 2024
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
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: "1.58.2"
changes:
- description: Fix filesystem ignore_types
type: bugfix
link: https://github.com/elastic/integrations/pull/10180
- version: "1.58.1"
changes:
- description: Fix metrics overview dashboard.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ metricsets: ["filesystem"]
period: {{period}}
processors: {{processors}}
{{#if filesystem.ignore_types}}
filesystem.ignore_types: {{filesystem.ignore_types}}
filesystem.ignore_types:
{{#each filesystem.ignore_types as |type i|}}
- {{type}}
{{/each}}
{{/if}}
{{#if system.hostfs}}
system.hostfs: {{system.hostfs}}
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: 1.58.1
version: 1.58.2
description: Collect system logs and metrics from your servers with Elastic Agent.
type: integration
categories:
Expand Down