File tree Expand file tree Collapse file tree 4 files changed +24
-2
lines changed Expand file tree Collapse file tree 4 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 11# newer versions go on top
2+ - version : " 1.5.0"
3+ changes :
4+ - description : Add audit rule files option.
5+ type : enhancement
6+ link : https://github.com/elastic/integrations/pull/4905
27- version : " 1.4.0"
38 changes :
49 - description : Update package to ECS 8.5.0.
Original file line number Diff line number Diff line change @@ -11,7 +11,15 @@ immutable: {{immutable}}
1111{{ /if }}
1212resolve_ids: {{ resolve_ids }}
1313failure_mode: {{ failure_mode }}
14+ {{ #if audit_rules }}
1415audit_rules: {{ escape_string audit_rules }}
16+ {{ /if }}
17+ {{ #if audit_rule_files.length }}
18+ audit_rule_files:
19+ {{ #each audit_rule_files as |file i |}}
20+ - {{ file }}
21+ {{ /each }}
22+ {{ /if }}
1523backlog_limit: {{ backlog_limit }}
1624rate_limit: {{ rate_limit }}
1725include_warnings: {{ include_warnings }}
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ streams:
6565 - name : audit_rules
6666 type : textarea
6767 title : Audit rules
68- required : true
68+ required : false
6969 show_user : true
7070 description : |
7171 List of the audit rules that should be
@@ -74,6 +74,15 @@ streams:
7474 used by the Linux `auditctl` utility. `elastic-agent` supports adding file watches
7575 (`-w`) and syscall rules (`-a` or `-A`). For more information,
7676 see the integration detail page.
77+ - name : audit_rule_files
78+ type : text
79+ title : Audit rule files
80+ required : false
81+ show_user : true
82+ description : |
83+ A list of files to load audit rules from. This files are loaded after the rules
84+ declared in `Audit rules` are loaded. Wildcards are supported and will expand in
85+ lexicographical order. The format is the same as that of the `Audit rules` field.
7786 - name : preserve_original_event
7887 required : true
7988 show_user : true
Original file line number Diff line number Diff line change 11format_version : 1.0.0
22name : auditd_manager
33title : " Auditd Manager"
4- version : " 1.4 .0"
4+ version : " 1.5 .0"
55release : ga
66license : basic
77description : " The Auditd Manager Integration receives audit events from the Linux Audit Framework that is a part of the Linux kernel."
You can’t perform that action at this time.
0 commit comments