Added NDPI TCP fingerprint in historical flows (#9702)

This commit is contained in:
Manuel Ceroni 2025-09-26 19:17:45 +02:00 committed by GitHub
parent fbb25f42ee
commit 6d91ba2dd0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 17 additions and 0 deletions

View file

@ -55,6 +55,7 @@ CREATE TABLE IF NOT EXISTS `flows` (
`SRC_NETWORK_ID` UInt32,
`DST_NETWORK_ID` UInt32,
`CLIENT_FINGERPRINT` String,
`NDPI_TCP_FINGERPRINT` String,
`INPUT_SNMP` UInt32,
`OUTPUT_SNMP` UInt32,
`SRC_HOST_POOL_ID` UInt16,
@ -114,6 +115,8 @@ ALTER TABLE flows ADD COLUMN IF NOT EXISTS `DST_NETWORK_ID` UInt32;
@
ALTER TABLE flows ADD COLUMN IF NOT EXISTS `CLIENT_FINGERPRINT` String;
@
ALTER TABLE flows ADD COLUMN IF NOT EXISTS `NDPI_TCP_FINGERPRINT` String;
@
ALTER TABLE flows ADD COLUMN IF NOT EXISTS `INPUT_SNMP` UInt32;
@
ALTER TABLE flows ADD COLUMN IF NOT EXISTS `OUTPUT_SNMP` UInt32;