schema: add threshold stats counters

Add schema definitions for new threshold-related statistics:
- bitmap_alloc_fail: Count of bitmap allocation failures
- bitmap_memuse: Memory usage by detection_filter bitmaps
- memcap: Memory cap for threshold hash table
- memuse: Memory usage by threshold hash table

Task #7928
pull/14705/head
Ofer Dagan 9 months ago committed by Victor Julien
parent d046e82db6
commit 2371829bf1

@ -7349,6 +7349,28 @@
"mpm_list": {
"type": "integer",
"description": "If profiling is enabled, average count of signatures in the mpm prefilter list"
},
"thresholds": {
"type": "object",
"additionalProperties": false,
"properties": {
"bitmap_alloc_fail": {
"type": "integer",
"description": "Count of bitmap allocation failures"
},
"bitmap_memuse": {
"type": "integer",
"description": "Memory usage by detection_filter bitmaps"
},
"memcap": {
"type": "integer",
"description": "Memory cap for threshold hash table"
},
"memuse": {
"type": "integer",
"description": "Memory usage by threshold hash table"
}
}
}
}
},

Loading…
Cancel
Save