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

[fim]: add auto option for backend and make it the default one #9702

Merged
merged 1 commit into from
Apr 24, 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/fim/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.15.1"
changes:
- description: Fix default backend to auto
type: bugfix
link: https://github.com/elastic/integrations/pulls/9702
- version: "1.15.0"
changes:
- description: New event sourcing backends added
Expand Down
18 changes: 10 additions & 8 deletions packages/fim/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: "3.0.0"
name: fim
title: "File Integrity Monitoring"
version: "1.15.0"
version: "1.15.1"
description: "The File Integrity Monitoring integration reports filesystem changes in real time."
type: integration
categories:
Expand Down Expand Up @@ -79,15 +79,17 @@ vars:
Forces a particular event source for file events on Linux. `fsnotify` does not provide
user information.
options:
- text: ebpf
value: ebpf
- text: fsnotify
value: fsnotify
- text: kprobes
value: kprobes
- text: auto
value: auto
- text: ebpf
value: ebpf
- text: fsnotify
value: fsnotify
- text: kprobes
value: kprobes
show_user: true
required: false
default: fsnotify
default: auto
- name: max_file_size
type: text
title: File size limit
Expand Down