diff options
Diffstat (limited to 'schema/daemon_event_schema.json')
-rw-r--r-- | schema/daemon_event_schema.json | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/schema/daemon_event_schema.json b/schema/daemon_event_schema.json index 2e8dc502a..3ac32156e 100644 --- a/schema/daemon_event_schema.json +++ b/schema/daemon_event_schema.json @@ -21,7 +21,7 @@ "properties": { "daemon_event_name": { "enum": [ "status", "shutdown" ] } } }, "then": { - "required": [ "packets-captured", "packets-processed", "total-skipped-flows", "total-l4-payload-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", "global-alloc-bytes", "global-alloc-count", "global-free-bytes", "global-free-count", "total-events-serialized" ] + "required": [ "packets-captured", "packets-processed", "pfring_active", "pfring_recv", "pfring_drop", "pfring_shunt", "total-skipped-flows", "total-l4-payload-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", "global-alloc-bytes", "global-alloc-count", "global-free-bytes", "global-free-count", "total-events-serialized" ] }, "properties": { "alias": { @@ -103,6 +103,21 @@ "type": "number", "minimum": 0 }, + "pfring_active": { + "type": "boolean" + }, + "pfring_recv": { + "type": "number", + "minimum": 0 + }, + "pfring_drop": { + "type": "number", + "minimum": 0 + }, + "pfring_shunt": { + "type": "number", + "minimum": 0 + }, "total-skipped-flows": { "type": "number", "minimum": 0 |