-
Notifications
You must be signed in to change notification settings - Fork 37
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 #319 from tstromberg/fpr-sep21
Address issues which kept some Linux alerts from firing
- Loading branch information
Showing
3 changed files
with
13 additions
and
5 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
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 |
---|---|---|
|
@@ -5,7 +5,8 @@ | |
-- | ||
-- tags: transient process state | ||
-- platform: linux | ||
SELECT -- Child | ||
SELECT | ||
-- Child | ||
p0.pid AS p0_pid, | ||
p0.cgroup_path AS p0_cgroup, | ||
p0.path AS p0_path, | ||
|
@@ -66,7 +67,7 @@ WHERE | |
AND INSTR(path, "/app/") != 1 | ||
AND INSTR(path, "/ko-app") != 1 | ||
AND INSTR(path, "/usr/share/teams/") != 1 | ||
AND INSTR(path, "/.terraform/") > 0 | ||
AND path NOT LIKE "%/.terraform%" | ||
AND NOT path LIKE '/tmp/%/osqtool' | ||
AND NOT path LIKE '/tmp/GoLand/___go_build_%_go' | ||
AND NOT cgroup_path LIKE '/user.slice/user-1000.slice/[email protected]/user.slice/nerdctl-%' | ||
|