diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-09-19 19:31:21 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-09-19 19:39:49 +0200 |
commit | 08f263e40981483e96fab9d7c864722abe45df0d (patch) | |
tree | 939dfce1c2f18a37cb355de5413f8b9852a220e7 /schema | |
parent | 015a739efda638737adeed521ca5ba43708949f0 (diff) |
nDPId: Reduced flow-updates for TCP flows to 1/4 of the timeout value.
* nDPId: Fixed broken validation tests.
* nDPId: Removed TICK_RESOLUTION, not required anymore.
* c-collectd: Improved total layer4 payload calculation/update handling.
* c-collectd: Updated RRD Graph script according to total layer4 payload changes.
* py-flow-info.py: Fixed several bugs and syntax errors.
* Python scripts: Added dirname(argv[0]) as search path for nDPIsrvd.py.
* nDPIsrvd&nDPId-test: Fixed missing EPOLLERR check.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'schema')
-rw-r--r-- | schema/daemon_event_schema.json | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/schema/daemon_event_schema.json b/schema/daemon_event_schema.json index 54f93f98b..91f387556 100644 --- a/schema/daemon_event_schema.json +++ b/schema/daemon_event_schema.json @@ -13,7 +13,7 @@ "properties": { "daemon_event_name": { "enum": [ "init", "reconnect" ] } } }, "then": { - "required": [ "max-flows-per-thread", "max-idle-flows-per-thread", "tick-resolution", "reader-thread-count", "flow-scan-interval", "generic-max-idle-time", "icmp-max-idle-time", "udp-max-idle-time", "tcp-max-idle-time", "max-packets-per-flow-to-send", "max-packets-per-flow-to-process" ] + "required": [ "max-flows-per-thread", "max-idle-flows-per-thread", "reader-thread-count", "flow-scan-interval", "generic-max-idle-time", "icmp-max-idle-time", "udp-max-idle-time", "tcp-max-idle-time", "max-packets-per-flow-to-send", "max-packets-per-flow-to-process", "max-packets-per-flow-to-analyse" ] }, "if": { "properties": { "daemon_event_name": { "enum": [ "status", "shutdown" ] } } @@ -59,9 +59,6 @@ "max-idle-flows-per-thread": { "type": "number" }, - "tick-resolution": { - "type": "number" - }, "reader-thread-count": { "type": "number" }, @@ -86,6 +83,9 @@ "max-packets-per-flow-to-send": { "type": "number" }, + "max-packets-per-flow-to-analyse": { + "type": "number" + }, "packets-captured": { "type": "number", |