Add TCP flow connection state (#8210)

* Add TCP flow connection state (#8140)

* Add Major and Minor connection states (#8140)

* Remove ZMQ connection state parsing. (#8140)

* Update doc with major and minor conn states. (#8140)
This commit is contained in:
Nicolò Maio 2024-02-28 14:45:49 +01:00 committed by GitHub
parent 03ad53f256
commit 2d150103b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 369 additions and 5 deletions

View file

@ -119,7 +119,10 @@ ALTER TABLE `flows` ON CLUSTER '$CLUSTER' ADD COLUMN IF NOT EXISTS `SRC2DST_PACK
ALTER TABLE `flows` ON CLUSTER '$CLUSTER' ADD COLUMN IF NOT EXISTS `DST2SRC_PACKETS` UInt32;
@
ALTER TABLE `flows` ON CLUSTER '$CLUSTER' ADD COLUMN IF NOT EXISTS `ALERT_CATEGORY` UInt8;
@
ALTER TABLE `flows` ON CLUSTER '$CLUSTER' ADD COLUMN IF NOT EXISTS `MINOR_CONNECTION_STATE` UInt8;
@
ALTER TABLE `flows` ON CLUSTER '$CLUSTER' ADD COLUMN IF NOT EXISTS `MAJOR_CONNECTION_STATE` UInt8;
@
DROP VIEW IF EXISTS `flow_alerts_view` ON CLUSTER '$CLUSTER';