config: add pid client criteria
This commit is contained in:
parent
587ffc7ee5
commit
a952e658da
13 changed files with 55 additions and 1 deletions
|
|
@ -563,6 +563,10 @@
|
|||
"uid": {
|
||||
"type": "integer",
|
||||
"description": "Matches the user ID of the client."
|
||||
},
|
||||
"pid": {
|
||||
"type": "integer",
|
||||
"description": "Matches the process ID of the client."
|
||||
}
|
||||
},
|
||||
"required": []
|
||||
|
|
|
|||
|
|
@ -879,6 +879,14 @@ The table has the following fields:
|
|||
|
||||
The numbers should be integers.
|
||||
|
||||
- `pid` (optional):
|
||||
|
||||
Matches the process ID of the client.
|
||||
|
||||
The value of this field should be a number.
|
||||
|
||||
The numbers should be integers.
|
||||
|
||||
|
||||
<a name="types-ClientMatchExactly"></a>
|
||||
### `ClientMatchExactly`
|
||||
|
|
|
|||
|
|
@ -3242,6 +3242,11 @@ ClientMatch:
|
|||
integer_only: true
|
||||
required: false
|
||||
description: Matches the user ID of the client.
|
||||
pid:
|
||||
kind: number
|
||||
integer_only: true
|
||||
required: false
|
||||
description: Matches the process ID of the client.
|
||||
|
||||
|
||||
ClientMatchExactly:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue