-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #254 from tclahr/new_artifacts
artif: new artifacts
- Loading branch information
Showing
7 changed files
with
76 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
version: 1.0 | ||
version: 2.0 | ||
artifacts: | ||
- | ||
description: Collect Apache logs. | ||
supported_os: [aix, freebsd, linux, macos, netbsd, netscaler, openbsd, solaris] | ||
supported_os: [all] | ||
collector: file | ||
path: /var/log | ||
name_pattern: ["access_log*", "access.log*", "error_log*", "error.log*"] | ||
max_file_size: 1073741824 # 1GB | ||
- | ||
description: Collect Apache logs. | ||
supported_os: [aix, freebsd, linux, macos, netbsd, netscaler, openbsd, solaris] | ||
supported_os: [all] | ||
collector: file | ||
path: /var/log/apache | ||
max_file_size: 1073741824 # 1GB | ||
- | ||
description: Collect Apache logs. | ||
supported_os: [aix, freebsd, linux, macos, netbsd, netscaler, openbsd, solaris] | ||
supported_os: [all] | ||
collector: file | ||
path: /var/log/apache2 | ||
max_file_size: 1073741824 # 1GB | ||
- | ||
description: Collect Apache logs. | ||
supported_os: [aix, freebsd, linux, macos, netbsd, netscaler, openbsd, solaris] | ||
supported_os: [all] | ||
collector: file | ||
path: /var/log/httpd | ||
max_file_size: 1073741824 # 1GB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: 1.0 | ||
artifacts: | ||
- | ||
description: Collect journal log files. | ||
supported_os: [linux] | ||
collector: file | ||
path: / | ||
name_pattern: ["*.journal"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
version: 1.0 | ||
artifacts: | ||
- | ||
description: Collect /run/log files. | ||
supported_os: [linux] | ||
collector: file | ||
path: /run/log | ||
max_file_size: 1073741824 # 1GB | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,73 @@ | ||
version: 2.1 | ||
version: 3.0 | ||
artifacts: | ||
- | ||
description: Collect systemd configuration files. | ||
supported_os: [linux] | ||
collector: file | ||
path: /lib/systemd/system | ||
ignore_date_range: true | ||
path: /etc/systemd | ||
- | ||
description: Collect systemd configuration files. | ||
supported_os: [linux] | ||
collector: file | ||
path: /usr/lib/systemd/system | ||
path: /lib/systemd/system | ||
ignore_date_range: true | ||
- | ||
description: Collect systemd sessions files. | ||
supported_os: [linux] | ||
collector: file | ||
path: /run/systemd/sessions | ||
file_type: [f] | ||
- | ||
description: Collect systemd files. | ||
supported_os: [linux] | ||
collector: file | ||
path: /run/systemd/system | ||
- | ||
description: Collect systemd scope and transient timer files. | ||
supported_os: [linux] | ||
collector: file | ||
path: /run/systemd/transient | ||
name_pattern: ["*.scope", "*.service", "*.timer"] | ||
- | ||
description: Collect systemd per-user transient timers. | ||
description: Collect systemd configuration files. | ||
supported_os: [linux] | ||
collector: file | ||
path: /run/user/*/systemd/transient | ||
name_pattern: ["*.service", "*.timer"] | ||
path: /usr/lib/systemd | ||
ignore_date_range: true | ||
- | ||
description: Collect systemd configuration files. | ||
supported_os: [linux] | ||
collector: file | ||
path: /usr/local/lib/systemd/system | ||
- | ||
description: Collect systemd configuration files. | ||
supported_os: [linux] | ||
collector: file | ||
path: /usr/local/lib/systemd/user | ||
- | ||
description: Collect systemd configuration files. | ||
supported_os: [linux] | ||
collector: file | ||
path: /usr/local/share/systemd/user | ||
- | ||
description: Collect systemd configuration files. | ||
supported_os: [linux] | ||
collector: file | ||
path: /usr/share/systemd/user | ||
- | ||
description: Collect systemd per-user configuration. | ||
supported_os: [linux] | ||
collector: file | ||
path: /%user_home%/.config/systemd | ||
- | ||
description: Collect systemd per-user configuration. | ||
supported_os: [linux] | ||
collector: file | ||
path: /%user_home%/.config/systemd | ||
path: /%user_home%/.local/share/systemd | ||
- | ||
description: Collect systemd per-user transient timers. | ||
supported_os: [linux] | ||
collector: file | ||
path: /run/user/*/systemd/transient | ||
name_pattern: ["*.scope", "*.service", "*.timer"] | ||
|