config: add exe client criteria
This commit is contained in:
parent
cc734a135c
commit
a6257910bb
13 changed files with 85 additions and 2 deletions
|
|
@ -579,6 +579,14 @@
|
|||
"comm-regex": {
|
||||
"type": "string",
|
||||
"description": "Matches the `/proc/pid/comm` of the client with a regular expression."
|
||||
},
|
||||
"exe": {
|
||||
"type": "string",
|
||||
"description": "Matches the `/proc/pid/exe` of the client verbatim."
|
||||
},
|
||||
"exe-regex": {
|
||||
"type": "string",
|
||||
"description": "Matches the `/proc/pid/exe` of the client with a regular expression."
|
||||
}
|
||||
},
|
||||
"required": []
|
||||
|
|
|
|||
|
|
@ -905,6 +905,18 @@ The table has the following fields:
|
|||
|
||||
The value of this field should be a string.
|
||||
|
||||
- `exe` (optional):
|
||||
|
||||
Matches the `/proc/pid/exe` of the client verbatim.
|
||||
|
||||
The value of this field should be a string.
|
||||
|
||||
- `exe-regex` (optional):
|
||||
|
||||
Matches the `/proc/pid/exe` of the client with a regular expression.
|
||||
|
||||
The value of this field should be a string.
|
||||
|
||||
|
||||
<a name="types-ClientMatchExactly"></a>
|
||||
### `ClientMatchExactly`
|
||||
|
|
|
|||
|
|
@ -3259,6 +3259,14 @@ ClientMatch:
|
|||
kind: string
|
||||
required: false
|
||||
description: Matches the `/proc/pid/comm` of the client with a regular expression.
|
||||
exe:
|
||||
kind: string
|
||||
required: false
|
||||
description: Matches the `/proc/pid/exe` of the client verbatim.
|
||||
exe-regex:
|
||||
kind: string
|
||||
required: false
|
||||
description: Matches the `/proc/pid/exe` of the client with a regular expression.
|
||||
|
||||
|
||||
ClientMatchExactly:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue