"description":"Stats on flow-related diagnostics",
"additionalProperties":false,
"properties":{
"active":{
@ -6683,61 +6684,78 @@
"additionalProperties":false,
"properties":{
"capture_bypassed":{
"type":"integer"
"type":"integer",
"description":"Number of flows bypassed at the capture level -- counted at the time of flow end"
},
"closed":{
"type":"integer"
"type":"integer",
"description":"Number of flows in 'closed' state at the time of flow end"
},
"established":{
"type":"integer"
"type":"integer",
"description":"Number of flows in 'established' state at the time of flow end"
},
"local_bypassed":{
"type":"integer"
"type":"integer",
"description":"Number of flows bypassed internally -- counted at the time of flow end"
},
"new":{
"type":"integer"
"type":"integer",
"description":"Number of flows in 'new' state at the time of flow end"
}
}
},
"tcp_liberal":{
"type":"integer"
"type":"integer",
"description":"Number of TCP flows ended that had liberal state"
},
"tcp_state":{
"type":"object",
"additionalProperties":false,
"properties":{
"close_wait":{
"type":"integer"
"type":"integer",
"description":"Number of TCP sessions in CLOSE_WAIT state"
},
"closed":{
"type":"integer"
"type":"integer",
"description":"Number of TCP sessions in CLOSED state"
},
"closing":{
"type":"integer"
"type":"integer",
"description":"Number of TCP sessions in CLOSING state"
},
"established":{
"type":"integer"
"type":"integer",
"description":"Number of TCP sessions in ESTABLISHED state"
},
"fin_wait1":{
"type":"integer"
"type":"integer",
"description":"Number of TCP sessions in FIN_WAIT_1 state"
},
"fin_wait2":{
"type":"integer"
"type":"integer",
"description":"Number of TCP sessions in FIN_WAIT_2 state"
},
"last_ack":{
"type":"integer"
"type":"integer",
"description":"Number of TCP sessions in LAST_ACK state"
},
"none":{
"type":"integer"
"type":"integer",
"description":"Number of TCP sessions newly created"
},
"syn_recv":{
"type":"integer"
"type":"integer",
"description":"Number of TCP sessions in SYN_RECV state"
},
"syn_sent":{
"type":"integer"
"type":"integer",
"description":"Number of TCP sessions in SYN_SENT state"
},
"time_wait":{
"type":"integer"
"type":"integer",
"description":"Number of TCP sessions in TIME_WAIT state"
}
}
}
@ -6786,6 +6804,7 @@
},
"mgr":{
"type":"object",
"description":"Flow manager stats counters",
"additionalProperties":false,
"properties":{
"flows_checked":{
@ -6867,34 +6886,44 @@
},
"wrk":{
"type":"object",
"description":"Flow worker threads stats",
"additionalProperties":false,
"properties":{
"flows_evicted":{
"type":"integer"
"type":"integer",
"description":"Number of flows that were evicted"
},
"flows_evicted_needs_work":{
"type":"integer"
"type":"integer",
"description":"Number of TCP flows that were returned to the workers in case reassembly, detection, logging still needs work"
},
"flows_evicted_pkt_inject":{
"type":"integer"
"type":"integer",
"description":"Number of pseudo packets injected into worker threads to complete flows' processing. For any flow this can be between 0-2, this is the total for all flows."
},
"flows_injected":{
"type":"integer"
"type":"integer",
"description":"Number of flows injected into the worker thread from another thread"
},
"flows_injected_max":{
"type":"integer"
"type":"integer",
"description":"Maximum number of flows injected into the worker thread from another thread"
},
"spare_sync":{
"type":"integer"
"type":"integer",
"description":"Number of times the engine attempted to fetch flows from the master flow pool/spare queue"
},
"spare_sync_avg":{
"type":"integer"
"type":"integer",
"description":"Average number of flows a thread could fetch from the master flow pool/spare queue"
},
"spare_sync_empty":{
"type":"integer"
"type":"integer",
"description":"Number of times the master spare pool was empty when requesting flows from it"
},
"spare_sync_incomplete":{
"type":"integer"
"type":"integer",
"description":"Number of times spare flow syncs were incomplete (fetched with less than 100 flows in sync)"