mirror of
https://github.com/utoni/nDPId.git
synced 2026-04-30 16:09:37 +00:00
* Python3 scripts are now compatible with versions <3.6 * improved and prettified run_tests.sh Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
70 lines
1.5 KiB
JSON
70 lines
1.5 KiB
JSON
{
|
|
"type": "object",
|
|
"required": [
|
|
"alias",
|
|
"source",
|
|
"thread_id",
|
|
"packet_id",
|
|
"daemon_event_id",
|
|
"daemon_event_name"
|
|
],
|
|
"properties": {
|
|
"alias": {
|
|
"type": "string"
|
|
},
|
|
"source": {
|
|
"type": "string"
|
|
},
|
|
"thread_id": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"maximum": 31
|
|
},
|
|
"packet_id": {
|
|
"type": "number",
|
|
"minimum": 0
|
|
},
|
|
"daemon_event_id": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"maximum": 3
|
|
},
|
|
"daemon_event_name": {
|
|
"type": "string",
|
|
"enum": [
|
|
"invalid",
|
|
"init",
|
|
"reconnect",
|
|
"shutdown"
|
|
]
|
|
},
|
|
"max-flows-per-thread": {
|
|
"type": "number"
|
|
},
|
|
"max-idle-flows-per-thread": {
|
|
"type": "number"
|
|
},
|
|
"tick-resolution": {
|
|
"type": "number"
|
|
},
|
|
"reader-thread-count": {
|
|
"type": "number"
|
|
},
|
|
"idle-scan-period": {
|
|
"type": "number"
|
|
},
|
|
"max-idle-time": {
|
|
"type": "number"
|
|
},
|
|
"tcp-max-post-end-flow-time": {
|
|
"type": "number"
|
|
},
|
|
"max-packets-per-flow-to-process": {
|
|
"type": "number"
|
|
},
|
|
"max-packets-per-flow-to-send": {
|
|
"type": "number"
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|