diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2024-06-19 14:25:42 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2024-06-19 14:25:42 +0200 |
commit | 930aaf92760ea8e350c65af3b71ee34cd3581fa9 (patch) | |
tree | caa45384532a92d23ba5df6e966ad6626353c967 /schema | |
parent | 165b18c82933bfbab41673804811df518c092d50 (diff) |
Added global (heap) memory stats for daemon status events.
* added new CMake option `ENABLE_MEMORY_STATUS` to restore the old behavior
(and increase performance)
* splitted `ENABLE_MEMORY_PROFILING` into `ENABLE_MEMORY_STATUS` and `ENABLE_MEMORY_PROFILING`
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'schema')
-rw-r--r-- | schema/daemon_event_schema.json | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/schema/daemon_event_schema.json b/schema/daemon_event_schema.json index 9099ec53f..2e8dc502a 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", "total-events-serialized" ] + "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" ] }, "properties": { "alias": { @@ -155,6 +155,22 @@ "type": "number", "minimum": 0 }, + "global-alloc-bytes": { + "type": "number", + "minimum": 0 + }, + "global-alloc-count": { + "type": "number", + "minimum": 0 + }, + "global-free-bytes": { + "type": "number", + "minimum": 0 + }, + "global-free-count": { + "type": "number", + "minimum": 0 + }, "total-events-serialized": { "type": "number", "minimum": 1 |