]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
eve/stats: add description for flow mgr & recycler
authorShivani Bhardwaj <shivani@oisf.net>
Wed, 5 Jun 2024 03:25:17 +0000 (08:55 +0530)
committerVictor Julien <victor@inliniac.net>
Wed, 5 Jun 2024 16:00:36 +0000 (18:00 +0200)
Ticket 6434

etc/schema.json

index 3aaab48eff2c93f473a6ad82a70e6b11c02a4aff..168a7b65dfc6a0cadf2c55b2860b38b56543ed69 100644 (file)
                             "type": "object",
                             "properties": {
                                 "flows_checked": {
+                                    "description":
+                                            "number of flows checked for timeout in the last pass",
                                     "type": "integer"
                                 },
                                 "flows_evicted": {
+                                    "description": "number of flows that were evicted",
                                     "type": "integer"
                                 },
                                 "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"
                                 },
                                 "flows_notimeout": {
+                                    "description": "number of flows that did not time out",
                                     "type": "integer"
                                 },
                                 "flows_timeout": {
+                                    "description": "number of flows that reached the time out",
                                     "type": "integer"
                                 },
                                 "full_hash_pass": {
+                                    "description":
+                                            "number of times a full pass of the hash table was done",
                                     "type": "integer"
                                 },
                                 "rows_maxlen": {
+                                    "description": "size of the biggest row in the hash table",
                                     "type": "integer"
                                 },
                                 "rows_per_sec": {
+                                    "description":
+                                            "number of rows to be scanned every second by a worker",
                                     "type": "integer"
                                 }
                             },
                             "type": "object",
                             "properties": {
                                 "recycled": {
+                                    "description": "number of recycled flows",
                                     "type": "integer"
                                 },
                                 "queue_avg": {
+                                    "description": "average number of recycled flows per queue",
                                     "type": "integer"
                                 },
                                 "queue_max": {
+                                    "description": "maximum number of recycled flows per queue",
                                     "type": "integer"
                                 }
                             },