From 803e23fbac45a318ad9924afdfbc299cf49aefe7 Mon Sep 17 00:00:00 2001 From: Calvo Date: Tue, 21 Mar 2023 11:28:11 +0100 Subject: [PATCH] Updated MR netflow server --- pandora_console/extras/mr/62.sql | 4 ++-- pandora_console/pandoradb.sql | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pandora_console/extras/mr/62.sql b/pandora_console/extras/mr/62.sql index 4c96004587..87c813f741 100644 --- a/pandora_console/extras/mr/62.sql +++ b/pandora_console/extras/mr/62.sql @@ -170,7 +170,7 @@ ALTER TABLE `tnetflow_filter` ADD COLUMN `netflow_monitoring` TINYINT UNSIGNED N ALTER TABLE `tnetflow_filter` ADD COLUMN `traffic_max` INTEGER NOT NULL default 0; ALTER TABLE `tnetflow_filter` ADD COLUMN `traffic_critical` float(20,2) NOT NULL default 0; ALTER TABLE `tnetflow_filter` ADD COLUMN `traffic_warning` float(20,2) NOT NULL default 0; - - +ALTER TABLE `tnetflow_filter` ADD COLUMN `utimestamp` INT UNSIGNED NOT NULL DEFAULT 0; +ALTER TABLE `tnetflow_filter` ADD COLUMN `interval` INT UNSIGNED NOT NULL DEFAULT 300, COMMIT; diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 30a21f9ae3..e62454df5a 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -2189,6 +2189,10 @@ CREATE TABLE IF NOT EXISTS `tnetflow_filter` ( `traffic_max` INTEGER NOT NULL default 0, `traffic_critical` FLOAT(20,2) NOT NULL default 0, `traffic_warning` FLOAT(20,2) NOT NULL default 0, + `netflow_monitoring_interval` FLOAT(20,2) NOT NULL default 0, + `interval` INT UNSIGNED NOT NULL DEFAULT 300, + `utimestamp` INT UNSIGNED NOT NULL DEFAULT 0, + PRIMARY KEY (`id_sg`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;