diff options
author | Toni <matzeton@googlemail.com> | 2024-08-19 18:33:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-19 18:33:18 +0200 |
commit | 5e4005162b804c5501fccf4d066c5b1b99c38b89 (patch) | |
tree | 73a090e6c0fd79de4a2d5fc950be8d52185bf905 /schema | |
parent | a230eaf061e4c570acfa3e2d494baa6c604acc22 (diff) |
Add PF_RING support. (#38)
Diffstat (limited to 'schema')
-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 |