From 2b18b1589ca2fae613f8fcdc0f7c3d2bd83250b5 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Mon, 28 Aug 2017 19:05:08 +0200 Subject: [PATCH] Added new module type: web_analysis --- .../extras/pandoradb_migrate_6.0_to_7.0.mysql.sql | 8 +++++++- pandora_console/pandoradb_data.sql | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index 8e716a14d0..3b8d2ec0e0 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -1421,4 +1421,10 @@ ALTER TABLE tserver_export_data MODIFY `module_name` varchar(600) BINARY NOT NUL -- Table `tmodule` -- --------------------------------------------------------------------- -INSERT INTO tmodule VALUES (8, 'Wux module'); \ No newline at end of file +INSERT INTO tmodule VALUES (8, 'Wux module'); + +-- --------------------------------------------------------------------- +-- Table `ttipo_modulo` +-- --------------------------------------------------------------------- + +INSERT INTO tmodule VALUES (25,'web_analysis', 8, 'Web analysis data', 'module-wux.png'); diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql index 413041b1e4..89902b3cc4 100644 --- a/pandora_console/pandoradb_data.sql +++ b/pandora_console/pandoradb_data.sql @@ -263,6 +263,7 @@ INSERT INTO `ttipo_modulo` VALUES (22,'async_data', 6, 'Asyncronous numeric data', 'mod_async_data.png'), (23,'async_string', 8, 'Asyncronous string data', 'mod_async_string.png'), (24,'log4x',0,'Log4x','mod_log4x.png'), +(25,'web_analysis', 8, 'Web analysis data', 'module-wux.png'), (30,'web_data',9,'Remote HTTP module to check latency','mod_web_data.png'), (31,'web_proc',9,'Remote HTTP module to check server response','mod_web_proc.png'), (32,'web_content_data',9,'Remote HTTP module to retrieve numeric data','mod_web_data.png'),