eve/stats: add description for flow mgr & recycler

Ticket 6434
pull/11253/head
Shivani Bhardwaj 2 years ago committed by Victor Julien
parent 17b32f98d7
commit de1de53e2f

@ -5514,27 +5514,39 @@
"type": "object", "type": "object",
"properties": { "properties": {
"flows_checked": { "flows_checked": {
"description":
"number of flows checked for timeout in the last pass",
"type": "integer" "type": "integer"
}, },
"flows_evicted": { "flows_evicted": {
"description": "number of flows that were evicted",
"type": "integer" "type": "integer"
}, },
"flows_evicted_needs_work": { "flows_evicted_needs_work": {
"description":
"number of TCP flows that were returned to the workers in case reassembly, detection, logging still needs work",
"type": "integer" "type": "integer"
}, },
"flows_notimeout": { "flows_notimeout": {
"description": "number of flows that did not time out",
"type": "integer" "type": "integer"
}, },
"flows_timeout": { "flows_timeout": {
"description": "number of flows that reached the time out",
"type": "integer" "type": "integer"
}, },
"full_hash_pass": { "full_hash_pass": {
"description":
"number of times a full pass of the hash table was done",
"type": "integer" "type": "integer"
}, },
"rows_maxlen": { "rows_maxlen": {
"description": "size of the biggest row in the hash table",
"type": "integer" "type": "integer"
}, },
"rows_per_sec": { "rows_per_sec": {
"description":
"number of rows to be scanned every second by a worker",
"type": "integer" "type": "integer"
} }
}, },
@ -5544,12 +5556,15 @@
"type": "object", "type": "object",
"properties": { "properties": {
"recycled": { "recycled": {
"description": "number of recycled flows",
"type": "integer" "type": "integer"
}, },
"queue_avg": { "queue_avg": {
"description": "average number of recycled flows per queue",
"type": "integer" "type": "integer"
}, },
"queue_max": { "queue_max": {
"description": "maximum number of recycled flows per queue",
"type": "integer" "type": "integer"
} }
}, },

Loading…
Cancel
Save