diff options
Diffstat (limited to 'schema/daemon_event_schema.json')
-rw-r--r-- | schema/daemon_event_schema.json | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/schema/daemon_event_schema.json b/schema/daemon_event_schema.json index fa6a4bdd9..0727fa1fe 100644 --- a/schema/daemon_event_schema.json +++ b/schema/daemon_event_schema.json @@ -19,7 +19,7 @@ "properties": { "daemon_event_name": { "enum": [ "status", "shutdown" ] } } }, "then": { - "required": [ "packets-captured", "packets-processed", "total-skipped-flows", "total-l4-data-len", "total-not-detected-flows", "total-guessed-flows", "total-detected-flows", "total-detection-updates", "total-updates", "current-active-flows", "total-active-flows", "total-idle-flows", "total-events-serialized" ] + "required": [ "packets-captured", "packets-processed", "total-skipped-flows", "total-l4-data-len", "total-not-detected-flows", "total-guessed-flows", "total-detected-flows", "total-detection-updates", "total-updates", "current-active-flows", "total-active-flows", "total-idle-flows", "total-compressions", "total-compression-diff", "current-compression-diff", "total-events-serialized" ] }, "properties": { "alias": { @@ -135,6 +135,18 @@ "type": "number", "minimum": 0 }, + "total-compressions": { + "type": "number", + "minimum": 0 + }, + "total-compression-diff": { + "type": "number", + "minimum": 0 + }, + "current-compression-diff": { + "type": "number", + "minimum": 0 + }, "total-events-serialized": { "type": "number", "minimum": 1 |