diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-09-09 19:32:08 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-09-10 19:32:08 +0200 |
commit | e42e3fe406c30bec09fe3be0c6bacd1efac44950 (patch) | |
tree | d5387f314725c83af1eefd4dab39c8b9a02cebbf /schema | |
parent | 96b0a8a4749f56244b9d6841de3696ab7fe1fd0e (diff) |
Serialize nDPId / libnDPI versions within daemon events.
* changed nDPI version hints / requirements
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'schema')
-rw-r--r-- | schema/daemon_event_schema.json | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/schema/daemon_event_schema.json b/schema/daemon_event_schema.json index 91f387556..9099ec53f 100644 --- a/schema/daemon_event_schema.json +++ b/schema/daemon_event_schema.json @@ -7,7 +7,9 @@ "packet_id", "daemon_event_id", "daemon_event_name", - "global_ts_usec" + "global_ts_usec", + "version", + "ndpi_version" ], "if": { "properties": { "daemon_event_name": { "enum": [ "init", "reconnect" ] } } @@ -52,6 +54,12 @@ "status" ] }, + "version": { + "type": "string" + }, + "ndpi_version": { + "type": "string" + }, "max-flows-per-thread": { "type": "number" |