This commit is contained in:
Alexey Avramov 2019-04-20 01:56:07 +09:00
parent e93bfd35fe
commit 6af3191e89

View File

@ -171,7 +171,6 @@ oom_score_adj_max = 20
Use script `oom-sort` from nohang package to view Use script `oom-sort` from nohang package to view
names, cmdlines and UIDs of processes. names, cmdlines and UIDs of processes.
5.1 Matching process names with RE patterns 5.1 Matching process names with RE patterns
Syntax: Syntax:
@ -197,13 +196,13 @@ oom_score_adj_max = 20
@CMDLINE_RE -200 /// ^/usr/lib/virtualbox @CMDLINE_RE -200 /// ^/usr/lib/virtualbox
5.3 Matching UIDs with RE patterns 5.3 Matching effective UIDs with RE patterns
The most slow option The most slow option
@UID_RE -100 /// ^0$ @UID_RE -100 /// ^0$
5.4 Matching CGroup-line with RE patterns 5.4 Matching CGroup_v1-line with RE patterns
@CGROUP_V1_RE -50 /// ^/system.slice @CGROUP_V1_RE -50 /// ^/system.slice
@ -211,13 +210,15 @@ oom_score_adj_max = 20
@CGROUP_V1_RE -50 /// ^/user.slice @CGROUP_V1_RE -50 /// ^/user.slice
5.5 Matching CGroup_v2-line with RE patterns
@CGROUP_V2_RE 100 /// ^/workload @CGROUP_V2_RE 100 /// ^/workload
5.5 Matching realpath with RE patterns 5.6 Matching realpath with RE patterns
@REALPATH_RE 20 /// ^/usr/bin/foo @REALPATH_RE 20 /// ^/usr/bin/foo
5.6 Matching environ with RE patterns 5.7 Matching environ with RE patterns
@ENVIRON_RE 100 /// USER=user @ENVIRON_RE 100 /// USER=user