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 backend configuration key to fim integration #8807

Merged
merged 5 commits into from
Apr 15, 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.0"
changes:
- description: New event sourcing backends added
type: enhancement
link: https://github.com/elastic/integrations/pull/8807
- version: "1.14.2"
changes:
- description: capture root requirement
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ paths:
{{/each}}
recursive: {{recursive}}
scan_at_start: {{scan_at_start}}
backend: {{backend}}
hash_types:
{{#each hash_types as |hash i|}}
- {{hash}}
Expand Down
18 changes: 17 additions & 1 deletion 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.14.2"
version: "1.15.0"
description: "The File Integrity Monitoring integration reports filesystem changes in real time."
type: integration
categories:
Expand Down Expand Up @@ -72,6 +72,22 @@ vars:
required: false
default:
- sha1
- name: backend
type: select
title: File Event Source
description: |
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
show_user: true
required: false
default: fsnotify
- name: max_file_size
type: text
title: File size limit
Expand Down