-
Notifications
You must be signed in to change notification settings - Fork 1
/
processes_skip.js
38 lines (38 loc) · 1.23 KB
/
processes_skip.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// list of well-known processes and processes that restart periodically
export default [
/^\/usr\/share\/code\/code/,
/^\/opt\/google\/chrome\/chrome/,
/^\/usr\/share\/code\/chrome_crashpad_handler/,
/^\/usr\/bin\/docker-proxy/,
/^\/opt\/google\/chrome\/chrome/,
/^(\/bin\/sh -c )?ps aux/,
/^\[kworker\//,
/^sshd: \[\w+\]/,
/^sshd: root \[\w+\]/,
/^sshd: unknown \[\w+\]/,
/^sshd: \/usr\/sbin\/sshd -D \[listener\]/,
/^sleep/,
/^netstat -tulpn$/,
/^\/bin\/sh -c netstat -tulpn$/,
/^\[sh\]( <defunct>)?$/,
/^\[netstat\]( <defunct>)?$/,
/^local -t unix$/,
/^dovecot\/(imap|quota|lmtp|auth)/,
/^tlsproxy/,
/^dnsblog/,
/^smtpd? -n (submission|smtp-amavis|127\.0\.0\.1:\d+) -t (inet|unix) -u/,
/^smtpd? -t pass -u -o/,
/^bounce -z -n defer -t unix/,
/^cleanup -z -t unix -u -c/,
/^pickup -l -t fifo/,
/^spawn -z -n policyd-spf/,
/^\/usr\/bin\/python3 \/usr\/bin\/policyd-spf/,
/^\/usr\/sbin\/amavisd-new/,
/^proxymap -t unix -u/,
/^anvil -l -t unix -u -c/,
/^postscreen -l -n smtp -t inet/,
/^lmtp -t unix -u/,
/^trivial-rewrite -n rewrite/,
/^\/lib\/systemd\/systemd-udevd/,
/^postgres: postgres postgres .* idle$/,
];