-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:Achiefs/fim into 149-fix-cpu-load
- Loading branch information
Showing
15 changed files
with
145 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fim" | ||
version = "0.4.11" | ||
version = "0.5.0" | ||
authors = ["José Fernández <´[email protected]´>"] | ||
edition = "2021" | ||
|
||
|
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,3 +1,9 @@ | ||
fim (0.5.0-1) xenial; urgency=medium | ||
|
||
* More info: https://github.com/Achiefs/fim/releases/tag/v0.5.0 | ||
|
||
-- Jose Fernandez <[email protected]> Fri, 19 Apr 2024 16:04:00 +0000 | ||
|
||
fim (0.4.11-1) xenial; urgency=medium | ||
|
||
* More info: https://github.com/Achiefs/fim/releases/tag/v0.4.11 | ||
|
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
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
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 |
---|---|---|
|
@@ -99,6 +99,9 @@ rm -fr %{buildroot} | |
# ----------------------------------------------------------------------------- | ||
|
||
%changelog | ||
* Fri Apr 19 2024 support <[email protected]> - 0.5.0 | ||
- More info: https://github.com/Achiefs/fim/releases/tag/v0.5.0 | ||
|
||
* Fri Apr 19 2024 support <[email protected]> - 0.4.11 | ||
- More info: https://github.com/Achiefs/fim/releases/tag/v0.4.11 | ||
|
||
|
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
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
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
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,28 @@ | ||
node: "FIM" | ||
|
||
# Events configuration, where to store produced events | ||
events: | ||
destination: file | ||
file: /var/lib/fim/events.json | ||
|
||
# Audit extended files and folders information | ||
audit: | ||
- path: /tmp | ||
labels: ["tmp", "linux"] | ||
ignore: [".swp"] | ||
allowed: [".txt", ".rs"] | ||
rule: "rwax" | ||
|
||
# Simple files and folders information | ||
monitor: | ||
- path: /bin/ | ||
- path: /usr/bin/ | ||
labels: ["usr/bin", "linux"] | ||
- path: /etc | ||
labels: ["etc", "linux"] | ||
|
||
# App procedure and errors logging | ||
log: | ||
file: /var/log/fim/fim.log | ||
# Available levels [debug, info, error, warning] | ||
level: info |