2008-07-30 20:39:40 +02:00
-- Pandora FMS - the Flexible Monitoring System
-- ============================================
2011-02-09 13:57:00 +01:00
-- Copyright (c) 2005-2011 Artica Soluciones Tecnológicas, http://www.artica.es
2008-04-07 00:18:33 +02:00
-- Please see http://pandora.sourceforge.net for full contribution list
2008-02-21 16:16:54 +01:00
2008-04-07 00:18:33 +02:00
-- This program is free software; you can redistribute it and/or
-- modify it under the terms of the GNU General Public License
-- as published by the Free Software Foundation for version 2.
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-- PLEASE NO NOT USE MULTILINE COMMENTS
-- Because Pandora Installer don't understand them
-- and fails creating database !!!
2007-03-12 18:58:52 +01:00
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
-- Priority : 0 - Maintance (grey)
-- Priority : 1 - Low (green)
-- Priority : 2 - Normal (blue)
-- Priority : 3 - Warning (yellow)
-- Priority : 4 - Critical (red)
2014-05-27 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
include/functions_custom_graphs.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_graph.php, include/functions_visual_map.php,
include/functions_visual_map_editor.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/graph_viewer.php, pandoradb_data.sql: added the
custom graphs into the visualmaps.
Incident: #367
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10018 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-05-27 14:59:56 +02:00
-- ---------------------------------------------------------------------
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
-- Table `taddress`
2014-05-27 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
include/functions_custom_graphs.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_graph.php, include/functions_visual_map.php,
include/functions_visual_map_editor.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/graph_viewer.php, pandoradb_data.sql: added the
custom graphs into the visualmaps.
Incident: #367
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10018 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-05-27 14:59:56 +02:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` taddress ` (
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
` id_a ` int ( 10 ) unsigned NOT NULL auto_increment ,
` ip ` varchar ( 60 ) NOT NULL default ' ' ,
` ip_pack ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
PRIMARY KEY ( ` id_a ` ) ,
KEY ` ip ` ( ` ip ` )
2008-08-05 13:42:08 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2014-05-27 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
include/functions_custom_graphs.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_graph.php, include/functions_visual_map.php,
include/functions_visual_map_editor.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/graph_viewer.php, pandoradb_data.sql: added the
custom graphs into the visualmaps.
Incident: #367
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10018 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-05-27 14:59:56 +02:00
-- ---------------------------------------------------------------------
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
-- Table `taddress_agent`
2014-05-27 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
include/functions_custom_graphs.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_graph.php, include/functions_visual_map.php,
include/functions_visual_map_editor.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/graph_viewer.php, pandoradb_data.sql: added the
custom graphs into the visualmaps.
Incident: #367
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10018 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-05-27 14:59:56 +02:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` taddress_agent ` (
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
` id_ag ` bigint ( 20 ) unsigned NOT NULL auto_increment ,
` id_a ` bigint ( 20 ) unsigned NOT NULL default ' 0 ' ,
` id_agent ` mediumint ( 8 ) unsigned NOT NULL default ' 0 ' ,
PRIMARY KEY ( ` id_ag ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2014-05-27 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
include/functions_custom_graphs.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_graph.php, include/functions_visual_map.php,
include/functions_visual_map_editor.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/graph_viewer.php, pandoradb_data.sql: added the
custom graphs into the visualmaps.
Incident: #367
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10018 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-05-27 14:59:56 +02:00
-- ---------------------------------------------------------------------
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
-- Table `tagente`
2014-05-27 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
include/functions_custom_graphs.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_graph.php, include/functions_visual_map.php,
include/functions_visual_map_editor.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/graph_viewer.php, pandoradb_data.sql: added the
custom graphs into the visualmaps.
Incident: #367
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10018 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-05-27 14:59:56 +02:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tagente ` (
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
` id_agente ` int ( 10 ) unsigned NOT NULL auto_increment ,
` nombre ` varchar ( 600 ) BINARY NOT NULL default ' ' ,
` direccion ` varchar ( 100 ) default NULL ,
` comentarios ` varchar ( 255 ) default ' ' ,
` id_grupo ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` ultimo_contacto ` datetime NOT NULL default ' 1970-01-01 00:00:00 ' ,
` modo ` tinyint ( 1 ) NOT NULL default ' 0 ' ,
` intervalo ` int ( 11 ) unsigned NOT NULL default ' 300 ' ,
` id_os ` int ( 10 ) unsigned default ' 0 ' ,
` os_version ` varchar ( 100 ) default ' ' ,
` agent_version ` varchar ( 100 ) default ' ' ,
` ultimo_contacto_remoto ` datetime default ' 1970-01-01 00:00:00 ' ,
` disabled ` tinyint ( 2 ) NOT NULL default ' 0 ' ,
` id_parent ` int ( 10 ) unsigned default ' 0 ' ,
` custom_id ` varchar ( 255 ) default ' ' ,
` server_name ` varchar ( 100 ) default ' ' ,
` cascade_protection ` tinyint ( 2 ) NOT NULL default ' 0 ' ,
` timezone_offset ` TINYINT ( 2 ) NULL DEFAULT ' 0 ' COMMENT ' nuber of hours of diference with the server timezone ' ,
` icon_path ` VARCHAR ( 127 ) NULL DEFAULT NULL COMMENT ' path in the server to the image of the icon representing the agent ' ,
` update_gis_data ` TINYINT ( 1 ) NOT NULL DEFAULT ' 1 ' COMMENT ' set it to one to update the position data (altitude, longitude, latitude) when getting information from the agent or to 0 to keep the last value and do not update it ' ,
` url_address ` mediumtext NULL ,
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
` quiet ` tinyint ( 1 ) NOT NULL default ' 0 ' ,
2013-03-05 10:23:03 +01:00
` normal_count ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` warning_count ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` critical_count ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` unknown_count ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` notinit_count ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` total_count ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` fired_count ` bigint ( 20 ) NOT NULL default ' 0 ' ,
2013-03-19 18:24:40 +01:00
` update_module_count ` tinyint ( 1 ) NOT NULL default ' 0 ' ,
` update_alert_count ` tinyint ( 1 ) NOT NULL default ' 0 ' ,
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
PRIMARY KEY ( ` id_agente ` ) ,
2013-05-22 12:45:16 +02:00
KEY ` nombre ` ( ` nombre ` ( 255 ) ) ,
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
KEY ` direccion ` ( ` direccion ` ) ,
KEY ` disabled ` ( ` disabled ` ) ,
KEY ` id_grupo ` ( ` id_grupo ` )
2008-08-05 13:42:08 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2014-05-27 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
include/functions_custom_graphs.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_graph.php, include/functions_visual_map.php,
include/functions_visual_map_editor.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/graph_viewer.php, pandoradb_data.sql: added the
custom graphs into the visualmaps.
Incident: #367
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10018 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-05-27 14:59:56 +02:00
-- ---------------------------------------------------------------------
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
-- Table `tagente_datos`
2014-05-27 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
include/functions_custom_graphs.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_graph.php, include/functions_visual_map.php,
include/functions_visual_map_editor.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/graph_viewer.php, pandoradb_data.sql: added the
custom graphs into the visualmaps.
Incident: #367
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10018 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-05-27 14:59:56 +02:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tagente_datos ` (
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
` id_agente_modulo ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
2013-05-27 12:53:52 +02:00
` datos ` double ( 22 , 2 ) default NULL ,
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
` utimestamp ` bigint ( 20 ) default ' 0 ' ,
KEY ` data_index1 ` ( ` id_agente_modulo ` ) ,
KEY ` idx_utimestamp ` USING BTREE ( ` utimestamp ` )
2008-08-05 13:42:08 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2014-05-27 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
include/functions_custom_graphs.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_graph.php, include/functions_visual_map.php,
include/functions_visual_map_editor.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/graph_viewer.php, pandoradb_data.sql: added the
custom graphs into the visualmaps.
Incident: #367
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10018 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-05-27 14:59:56 +02:00
-- ---------------------------------------------------------------------
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
-- Table `tagente_datos_inc`
2014-05-27 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
include/functions_custom_graphs.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_graph.php, include/functions_visual_map.php,
include/functions_visual_map_editor.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/graph_viewer.php, pandoradb_data.sql: added the
custom graphs into the visualmaps.
Incident: #367
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10018 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-05-27 14:59:56 +02:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tagente_datos_inc ` (
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
` id_agente_modulo ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
2013-05-27 12:53:52 +02:00
` datos ` double ( 22 , 2 ) default NULL ,
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
` utimestamp ` int ( 20 ) unsigned default ' 0 ' ,
KEY ` data_inc_index_1 ` ( ` id_agente_modulo ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2014-05-27 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
include/functions_custom_graphs.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_graph.php, include/functions_visual_map.php,
include/functions_visual_map_editor.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/graph_viewer.php, pandoradb_data.sql: added the
custom graphs into the visualmaps.
Incident: #367
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10018 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-05-27 14:59:56 +02:00
-- ---------------------------------------------------------------------
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
-- Table `tagente_datos_string`
2014-05-27 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
include/functions_custom_graphs.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_graph.php, include/functions_visual_map.php,
include/functions_visual_map_editor.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/graph_viewer.php, pandoradb_data.sql: added the
custom graphs into the visualmaps.
Incident: #367
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10018 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-05-27 14:59:56 +02:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tagente_datos_string ` (
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
` id_agente_modulo ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` datos ` text NOT NULL ,
` utimestamp ` int ( 20 ) unsigned NOT NULL default 0 ,
KEY ` data_string_index_1 ` ( ` id_agente_modulo ` ) ,
KEY ` idx_utimestamp ` USING BTREE ( ` utimestamp ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2006-03-27 05:37:27 +02:00
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
-- -----------------------------------------------------
-- Table `tagente_datos_log4x`
-- -----------------------------------------------------
2010-02-15 14:07:52 +01:00
CREATE TABLE IF NOT EXISTS ` tagente_datos_log4x ` (
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
` id_tagente_datos_log4x ` bigint ( 20 ) unsigned NOT NULL auto_increment ,
` id_agente_modulo ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` severity ` text NOT NULL ,
` message ` text NOT NULL ,
` stacktrace ` text NOT NULL ,
` utimestamp ` int ( 20 ) unsigned NOT NULL default 0 ,
PRIMARY KEY ( ` id_tagente_datos_log4x ` ) ,
KEY ` data_log4x_index_1 ` ( ` id_agente_modulo ` )
2010-02-15 14:07:52 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
-- -----------------------------------------------------
-- Table `tagente_estado`
-- -----------------------------------------------------
2006-03-27 05:37:27 +02:00
CREATE TABLE ` tagente_estado ` (
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
` id_agente_estado ` int ( 10 ) unsigned NOT NULL auto_increment ,
` id_agente_modulo ` int ( 10 ) NOT NULL default ' 0 ' ,
` datos ` text NOT NULL ,
` timestamp ` datetime NOT NULL default ' 1970-01-01 00:00:00 ' ,
` estado ` int ( 4 ) NOT NULL default ' 0 ' ,
` id_agente ` int ( 10 ) NOT NULL default ' 0 ' ,
` last_try ` datetime default NULL ,
` utimestamp ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` current_interval ` int ( 8 ) unsigned NOT NULL default ' 0 ' ,
` running_by ` smallint ( 4 ) unsigned default ' 0 ' ,
` last_execution_try ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` status_changes ` tinyint ( 4 ) default 0 ,
` last_status ` tinyint ( 4 ) default 0 ,
2012-10-01 16:04:30 +02:00
` last_known_status ` tinyint ( 4 ) default 0 ,
2012-11-06 18:57:24 +01:00
` last_error ` int ( 4 ) NOT NULL default ' 0 ' ,
2014-05-31 15:36:53 +02:00
` ff_start_utimestamp ` bigint ( 20 ) default 0 ,
2012-07-30 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/alerts/alert_list.php, godmode/menu.php,
godmode/snmpconsole/snmp_filters.php, godmode/tag/edit_tag.php,
include/functions_alerts.php, include/functions_html.php,
pandoradb.sql, index.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6828 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-30 10:45:40 +02:00
PRIMARY KEY ( ` id_agente_estado ` ) ,
KEY ` status_index_1 ` ( ` id_agente_modulo ` ) ,
KEY ` idx_agente ` ( ` id_agente ` ) ,
2013-01-31 19:05:22 +01:00
KEY ` running_by ` ( ` running_by ` )
2008-07-09 18:41:13 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2009-01-12 Sancho Lerena <slerena@artica.es>
* pandoradb.sql: Removed fields "timestamp" and "id_agente" (and altered
some indexes) on tagente_datos, tagente_datos_string and
tagente_datos_inc.
tagente_estado table: removed cambio, added status_changes, last_status.
tagente_modulo: added five new fields (warning,critical mgmt., flipflop
detection, history module and delete_pending bit.
* agent_manager.php: Group ALL not shown anymore.
* configurar_agente.php: Support for new options. Delete a module now
mark for deletion the module, not delete data (It's VERY slow!).
* modificar_agente.php: Delete agent now uses the global function,
minor fixes.
* module_manager_editor.php: New fields initializacion.
* module_manager_editor_network.php: At this time, the first module
editor who implements the new fields and improve old ones (tcp data).
* setup.php: Added support for new token: event_view_hr (Filter of max
old (in hr) for the event viewer. Removed old tokens show_unknown and
show_lastalert.
* functions.php: format_for_graph() has an important BUG that makes
all units rendered without the "K" !!!!. Fixed.
* delete_agent.php: Delete remote config (if present). Also mark
for deletion modules instead delete them (and let the data without
being deleted, because it's a HUGE consuming time, and it's left
for the daily db maintance process).
* estado_agente.php: Updated code for view new status.
* estado_generalagente.php: Total packets are removed from this view,
this was a huge time consuming SQL operation that don't give important
infomation. Groupname is now visualized.
* estado_ultimopaquete.php,
* estado_monitores.php,
* estado_grupo.php: Rewritten much code to view new status and other
minor changes.
* ver_agente.php: Data view now works under the tabs and other minor
changes.
* events.php: Support for the new events and status. Added filter for
username and for a max. hours old events. Some boxes are now hidden
by default.
* fgraph.php: Some graphs are now fixed and uses tagente_datos and
tagent_access with utimestamp and without id_agent index. Works faster
* images/*: Updated icons (module types) and two new bulb colors.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1326 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 04:53:33 +01:00
-- Probably last_execution_try index is not useful and loads more than benefits
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
-- -----------------------------------------------------
-- Table `tagente_modulo`
-- -----------------------------------------------------
2008-08-05 13:42:08 +02:00
-- id_modulo now uses tmodule
-- ---------------------------
-- 1 - Data server modules (agent related modules)
-- 2 - Network server modules
-- 4 - Plugin server
-- 5 - Predictive server
-- 6 - WMI server
2009-04-02 Sancho Lerena <slerena@artica.es>
* pandoradb.sql: Final DB changes proposed for closing this month the DB
scheme. tagente-> new server_name field to assign server (old fields will
be removed). talert_templates has two new types (warning, critical).
tevento has "user_comment" new field. Tserver has three new fields,
server_type (so some old fields will be deleted), threads and queued_modules
this last two are for statistical options. Tusuario add language type to
override global language.
* update_manager/main.php: Minor changes for correct ACL usage. Non PM
users could see in what revision it the system, but only that.
* pandoradb_migrate_v2.x_to_v3.0.sql: Updated script for new DB changes.
* general/noaccess.php: Added footer and ending div. Page was very ugly
when showing noaccess errors, nobody see it ???.
* godmode/menu.php: A LOT of ACL fixes on several options.
* godmode/agentes/agent_manager.php: Fixed a crazy floating icon.
* godmode/agentes/manage_config_remote.php: A LOT of changes, rewriting
stuff, because was not working. This also adds a lot of ACL checks.
* godmode/agentes/massive_config.php, massive*: ACL changes.
* godmode/agentes/modificar_agente.php: Fixed ACL problems.
* godmode/agentes/module_manager_editor.php: Fixed bad module categories for
some types (data, plugin and prediction).
* godmode/alerts/alert_list.php: Fixed ACL problem.
* godmode/reporting/graph_builder.php: Added ACl restriction for
non-viewable agents for current user. Seems to be a problem with data
with more than 2 sources.
* godmode/reporting/map_builder.php: ACL checks improved.
* godmode/reporting/reporting_builder.php: ACL checks added (was missing),
some code ported from 2.1, other is new. New fields shown in list.
* include/functions.php: Fixed the annoying bug of "bad counters" in
function human_time_description_raw(). Function used,format_numeric() should
not be used never to calculate nothing, only to print formatted strings.
* include/functions_db.php: Added function user_access_to_agent() to know
if a given user has access to a given agent.
* include/functioins_report.php: get_report() should let admin to watch any
report. Fixed.
* agentes/alerts_status.php: Fixed ACL problem for view alert.
* operation/incidents/incident.php: Bad call for pagination() was giving
problems to pagination call. Somebody changes pagination() interface and
make this broken. Please if you change any interface, be sure that is compatible
with old code or make a post in the list about this !
* godmode/users/user_edit.php: Additional ACL check to do not let anybody
to watch non accesible users. Even for see the username or description.
* reporting/pchart_graph.php:Progress bar shown text in white when > 60%.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1594 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-02 21:16:59 +02:00
-- 7 - WEB Server (enteprise)
2007-04-18 11:58:26 +02:00
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tagente_modulo ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id_agente_modulo ` int ( 10 ) unsigned NOT NULL auto_increment ,
` id_agente ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` id_tipo_modulo ` smallint ( 5 ) NOT NULL default ' 0 ' ,
` descripcion ` TEXT NOT NULL ,
` extended_info ` TEXT NOT NULL ,
` nombre ` text NOT NULL ,
` unit ` text ,
` id_policy_module ` INTEGER unsigned NOT NULL default ' 0 ' ,
` max ` bigint ( 20 ) default ' 0 ' ,
` min ` bigint ( 20 ) default ' 0 ' ,
` module_interval ` int ( 4 ) unsigned default ' 0 ' ,
2012-10-23 Ramon Novoa <rnovoa@artica.es>
* include/functions_cron.php: Added to repository. Cron related
functions.
* include/functions_html.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
godmode/agentes/module_manager_editor_common.php,
godmode/agentes/configurar_agente.php,
godmode/agentes/module_manager_editor.php: Added support for remote
cron modules.
* godmode/netflow/nf_item_list.php,
godmode/netflow/nf_report_item.php,
operation/netflow/nf_view.php,
include/functions_netflow.php: Added a description to report items.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7083 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-10-23 12:45:25 +02:00
` cron_interval ` varchar ( 100 ) default ' ' ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` module_ff_interval ` int ( 4 ) unsigned default ' 0 ' ,
` tcp_port ` int ( 4 ) unsigned default ' 0 ' ,
` tcp_send ` TEXT ,
` tcp_rcv ` TEXT ,
` snmp_community ` varchar ( 100 ) default ' ' ,
` snmp_oid ` varchar ( 255 ) default ' 0 ' ,
` ip_target ` varchar ( 100 ) default ' ' ,
` id_module_group ` int ( 4 ) unsigned default ' 0 ' ,
` flag ` tinyint ( 1 ) unsigned default ' 1 ' ,
` id_modulo ` int ( 10 ) unsigned default ' 0 ' ,
` disabled ` tinyint ( 1 ) unsigned NOT NULL default ' 0 ' ,
` id_export ` smallint ( 4 ) unsigned default ' 0 ' ,
` plugin_user ` text ,
` plugin_pass ` text ,
` plugin_parameter ` text ,
` id_plugin ` int ( 10 ) default ' 0 ' ,
2014-09-22 17:12:36 +02:00
` post_process ` double ( 24 , 15 ) default 0 ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` prediction_module ` bigint ( 14 ) default ' 0 ' ,
` max_timeout ` int ( 4 ) unsigned default ' 0 ' ,
2012-10-29 Ramon Novoa <rnovoa@artica.es>
* include/functions_reporting.php,
include/javascript/pandora_modules.js,
include/functions_network_components.php,
include/functions_api.php,
include/functions_netflow.php,
pandoradb.sql,
pandoradb.postgreSQL.sql,
pandoradb.oracle.sql,
extensions/resource_registration.php,
extensions/plugin_registration.php,
operation/menu.php,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
godmode/agentes/agent_template.php,
godmode/agentes/module_manager_editor_common.php,
godmode/agentes/configurar_agente.php,
godmode/agentes/module_manager_editor.php,
godmode/servers/plugin.php,
godmode/menu.php,
godmode/modules/manage_network_components_form.php,
godmode/modules/manage_network_templates.php,
godmode/modules/manage_network_components_form_wmi.php,
godmode/modules/manage_network_components.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php: Added support for
custom timeout and retries to remote modules.
* operation/netflow/nf_reporting.php,
operation/netflow/nf_view.php,
godmode/netflow/nf_report_item.php,
godmode/netflow/nf_report.php,
godmode/netflow/nf_report_form.php,
godmode/netflow/nf.php: Deleted from repository. Netflow reports are
now integrated into custom reports.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7103 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-10-29 11:13:49 +01:00
` max_retries ` int ( 4 ) unsigned default ' 0 ' ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` custom_id ` varchar ( 255 ) default ' ' ,
` history_data ` tinyint ( 1 ) unsigned default ' 1 ' ,
` min_warning ` double ( 18 , 2 ) default 0 ,
` max_warning ` double ( 18 , 2 ) default 0 ,
` str_warning ` text ,
` min_critical ` double ( 18 , 2 ) default 0 ,
` max_critical ` double ( 18 , 2 ) default 0 ,
` str_critical ` text ,
` min_ff_event ` int ( 4 ) unsigned default ' 0 ' ,
` delete_pending ` int ( 1 ) unsigned default 0 ,
` policy_linked ` tinyint ( 1 ) unsigned not null default 0 ,
` policy_adopted ` tinyint ( 1 ) unsigned not null default 0 ,
` custom_string_1 ` text ,
` custom_string_2 ` text ,
` custom_string_3 ` text ,
` custom_integer_1 ` int ( 10 ) default 0 ,
` custom_integer_2 ` int ( 10 ) default 0 ,
2013-01-23 15:20:54 +01:00
` wizard_level ` enum ( ' basic ' , ' advanced ' , ' nowizard ' ) default ' nowizard ' ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` macros ` text ,
2014-05-10 18:02:20 +02:00
` critical_instructions ` text NOT NULL ,
` warning_instructions ` text NOT NULL ,
` unknown_instructions ` text NOT NULL ,
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/module_manager_editor_common.php,
godmode/agentes/module_manager.php,
godmode/agentes/configurar_agente.php,
godmode/agentes/module_manager_editor.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/agentes/estado_ultimopaquete.php,
operation/agentes/estado_monitores.php,
operation/agentes/ver_agente.php: added in the modules the same
feature to set agent in "Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6898 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 20:57:48 +02:00
` quiet ` tinyint ( 1 ) NOT NULL default ' 0 ' ,
2012-09-17 Ramon Novoa <rnovoa@artica.es>
* include/javascript/pandora_modules.js,
include/functions_network_components.php,
pandoradb.sql,
extensions/plugin_registration.php,
operation/agentes/status_monitor.php,
godmode/agentes/agent_template.php,
godmode/agentes/module_manager_editor_common.php,
godmode/agentes/module_manager.php,
godmode/agentes/configurar_agente.php,
godmode/agentes/module_manager_editor.php,
godmode/massive/massive_edit_modules.php,
godmode/modules/manage_network_components_form.php,
godmode/modules/manage_network_components_form_common.php,
godmode/modules/manage_network_components.php: Added inverse intervals for
warning and critical limits.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6977 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-17 16:29:45 +02:00
` critical_inverse ` tinyint ( 1 ) unsigned default ' 0 ' ,
` warning_inverse ` tinyint ( 1 ) unsigned default ' 0 ' ,
2012-12-05 13:55:44 +01:00
` id_category ` int ( 10 ) default 0 ,
2014-05-10 18:02:20 +02:00
` disabled_types_event ` TEXT NOT NULL ,
` module_macros ` TEXT NOT NULL ,
2014-05-21 10:25:10 +02:00
` min_ff_event_normal ` int ( 4 ) unsigned default ' 0 ' ,
` min_ff_event_warning ` int ( 4 ) unsigned default ' 0 ' ,
` min_ff_event_critical ` int ( 4 ) unsigned default ' 0 ' ,
` each_ff ` tinyint ( 1 ) unsigned default ' 0 ' ,
2014-05-31 15:36:53 +02:00
` ff_timeout ` int ( 4 ) unsigned default ' 0 ' ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
PRIMARY KEY ( ` id_agente_modulo ` ) ,
KEY ` main_idx ` ( ` id_agente_modulo ` , ` id_agente ` ) ,
KEY ` tam_agente ` ( ` id_agente ` ) ,
KEY ` id_tipo_modulo ` ( ` id_tipo_modulo ` ) ,
KEY ` disabled ` ( ` disabled ` ) ,
KEY ` module ` ( ` id_modulo ` ) ,
KEY ` nombre ` ( ` nombre ` ( 255 ) ) ,
KEY ` module_group ` ( ` id_module_group ` ) using btree
2008-07-09 18:41:13 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
-- snmp_oid is also used for WMI query
2006-03-27 05:37:27 +02:00
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
-- -----------------------------------------------------
-- Table `tagent_access`
-- -----------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tagent_access ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
` id_agent ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` utimestamp ` bigint ( 20 ) NOT NULL default ' 0 ' ,
KEY ` agent_index ` ( ` id_agent ` ) ,
KEY ` idx_utimestamp ` USING BTREE ( ` utimestamp ` )
2008-08-05 13:42:08 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
-- -----------------------------------------------------
-- Table `talert_snmp`
-- -----------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` talert_snmp ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
` id_as ` int ( 10 ) unsigned NOT NULL auto_increment ,
` id_alert ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` al_field1 ` text NOT NULL ,
` al_field2 ` text NOT NULL ,
` al_field3 ` text NOT NULL ,
2013-03-05 15:57:35 +01:00
` al_field4 ` text NOT NULL ,
` al_field5 ` text NOT NULL ,
` al_field6 ` text NOT NULL ,
` al_field7 ` text NOT NULL ,
` al_field8 ` text NOT NULL ,
` al_field9 ` text NOT NULL ,
` al_field10 ` text NOT NULL ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
` description ` varchar ( 255 ) default ' ' ,
` alert_type ` int ( 2 ) unsigned NOT NULL default ' 0 ' ,
` agent ` varchar ( 100 ) default ' ' ,
` custom_oid ` text ,
` oid ` varchar ( 255 ) NOT NULL default ' ' ,
` time_threshold ` int ( 11 ) NOT NULL default ' 0 ' ,
` times_fired ` int ( 2 ) unsigned NOT NULL default ' 0 ' ,
` last_fired ` datetime NOT NULL default ' 1970-01-01 00:00:00 ' ,
` max_alerts ` int ( 11 ) NOT NULL default ' 1 ' ,
` min_alerts ` int ( 11 ) NOT NULL default ' 1 ' ,
` internal_counter ` int ( 2 ) unsigned NOT NULL default ' 0 ' ,
` priority ` tinyint ( 4 ) default ' 0 ' ,
` _snmp_f1_ ` text ,
` _snmp_f2_ ` text ,
` _snmp_f3_ ` text ,
` _snmp_f4_ ` text ,
` _snmp_f5_ ` text ,
` _snmp_f6_ ` text ,
2013-07-10 18:49:05 +02:00
` _snmp_f7_ ` text ,
` _snmp_f8_ ` text ,
` _snmp_f9_ ` text ,
` _snmp_f10_ ` text ,
2014-03-19 12:29:56 +01:00
` _snmp_f11_ ` text ,
` _snmp_f12_ ` text ,
` _snmp_f13_ ` text ,
` _snmp_f14_ ` text ,
` _snmp_f15_ ` text ,
` _snmp_f16_ ` text ,
` _snmp_f17_ ` text ,
` _snmp_f18_ ` text ,
` _snmp_f19_ ` text ,
` _snmp_f20_ ` text ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
` trap_type ` int ( 11 ) NOT NULL default ' -1 ' ,
` single_value ` varchar ( 255 ) default ' ' ,
2013-07-17 19:39:27 +02:00
` position ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
2014-03-18 17:08:20 +01:00
` id_group ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
2014-03-27 11:48:19 +01:00
` order_1 ` int ( 10 ) unsigned NOT NULL default 1 ,
` order_2 ` int ( 10 ) unsigned NOT NULL default 2 ,
` order_3 ` int ( 10 ) unsigned NOT NULL default 3 ,
` order_4 ` int ( 10 ) unsigned NOT NULL default 4 ,
` order_5 ` int ( 10 ) unsigned NOT NULL default 5 ,
` order_6 ` int ( 10 ) unsigned NOT NULL default 6 ,
` order_7 ` int ( 10 ) unsigned NOT NULL default 7 ,
` order_8 ` int ( 10 ) unsigned NOT NULL default 8 ,
` order_9 ` int ( 10 ) unsigned NOT NULL default 9 ,
` order_10 ` int ( 10 ) unsigned NOT NULL default 10 ,
` order_11 ` int ( 10 ) unsigned NOT NULL default 11 ,
` order_12 ` int ( 10 ) unsigned NOT NULL default 12 ,
` order_13 ` int ( 10 ) unsigned NOT NULL default 13 ,
` order_14 ` int ( 10 ) unsigned NOT NULL default 14 ,
` order_15 ` int ( 10 ) unsigned NOT NULL default 15 ,
` order_16 ` int ( 10 ) unsigned NOT NULL default 16 ,
` order_17 ` int ( 10 ) unsigned NOT NULL default 17 ,
` order_18 ` int ( 10 ) unsigned NOT NULL default 18 ,
` order_19 ` int ( 10 ) unsigned NOT NULL default 19 ,
` order_20 ` int ( 10 ) unsigned NOT NULL default 20 ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
PRIMARY KEY ( ` id_as ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2006-03-27 05:37:27 +02:00
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
-- -----------------------------------------------------
-- Table `talert_commands`
-- -----------------------------------------------------
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
CREATE TABLE IF NOT EXISTS ` talert_commands ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
` id ` int ( 10 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 100 ) NOT NULL default ' ' ,
` command ` text ,
` description ` text ,
` internal ` tinyint ( 1 ) default 0 ,
2012-10-29 09:45:06 +01:00
` fields_descriptions ` TEXT ,
` fields_values ` TEXT ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
PRIMARY KEY ( ` id ` )
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
-- -----------------------------------------------------
-- Table `talert_actions`
-- -----------------------------------------------------
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
CREATE TABLE IF NOT EXISTS ` talert_actions ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
` id ` int ( 10 ) unsigned NOT NULL auto_increment ,
` name ` text ,
` id_alert_command ` int ( 10 ) unsigned NULL default 0 ,
` field1 ` text NOT NULL ,
2012-10-29 09:45:06 +01:00
` field2 ` text NOT NULL ,
` field3 ` text NOT NULL ,
` field4 ` text NOT NULL ,
` field5 ` text NOT NULL ,
` field6 ` text NOT NULL ,
` field7 ` text NOT NULL ,
` field8 ` text NOT NULL ,
` field9 ` text NOT NULL ,
` field10 ` text NOT NULL ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
` id_group ` mediumint ( 8 ) unsigned NULL default 0 ,
` action_threshold ` int ( 10 ) NOT NULL default ' 0 ' ,
2014-03-05 12:43:03 +01:00
` field1_recovery ` text NOT NULL ,
` field2_recovery ` text NOT NULL ,
` field3_recovery ` text NOT NULL ,
` field4_recovery ` text NOT NULL ,
` field5_recovery ` text NOT NULL ,
` field6_recovery ` text NOT NULL ,
` field7_recovery ` text NOT NULL ,
` field8_recovery ` text NOT NULL ,
` field9_recovery ` text NOT NULL ,
` field10_recovery ` text NOT NULL ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
PRIMARY KEY ( ` id ` ) ,
FOREIGN KEY ( ` id_alert_command ` ) REFERENCES talert_commands ( ` id ` )
ON DELETE CASCADE ON UPDATE CASCADE
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
-- -----------------------------------------------------
-- Table `talert_templates`
-- -----------------------------------------------------
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
CREATE TABLE IF NOT EXISTS ` talert_templates ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
` id ` int ( 10 ) unsigned NOT NULL auto_increment ,
` name ` text ,
` description ` mediumtext ,
` id_alert_action ` int ( 10 ) unsigned NULL ,
2012-10-29 09:45:06 +01:00
` field1 ` text NOT NULL ,
` field2 ` text NOT NULL ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
` field3 ` text NOT NULL ,
2012-10-29 09:45:06 +01:00
` field4 ` text NOT NULL ,
` field5 ` text NOT NULL ,
` field6 ` text NOT NULL ,
` field7 ` text NOT NULL ,
` field8 ` text NOT NULL ,
` field9 ` text NOT NULL ,
` field10 ` text NOT NULL ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
` type ` ENUM ( ' regex ' , ' max_min ' , ' max ' , ' min ' , ' equal ' , ' not_equal ' , ' warning ' , ' critical ' , ' onchange ' , ' unknown ' , ' always ' ) ,
` value ` varchar ( 255 ) default ' ' ,
` matches_value ` tinyint ( 1 ) default 0 ,
` max_value ` double ( 18 , 2 ) default NULL ,
` min_value ` double ( 18 , 2 ) default NULL ,
` time_threshold ` int ( 10 ) NOT NULL default ' 0 ' ,
` max_alerts ` int ( 4 ) unsigned NOT NULL default ' 1 ' ,
` min_alerts ` int ( 4 ) unsigned NOT NULL default ' 0 ' ,
` time_from ` time default ' 00:00:00 ' ,
` time_to ` time default ' 00:00:00 ' ,
` monday ` tinyint ( 1 ) default 1 ,
` tuesday ` tinyint ( 1 ) default 1 ,
` wednesday ` tinyint ( 1 ) default 1 ,
` thursday ` tinyint ( 1 ) default 1 ,
` friday ` tinyint ( 1 ) default 1 ,
` saturday ` tinyint ( 1 ) default 1 ,
` sunday ` tinyint ( 1 ) default 1 ,
` recovery_notify ` tinyint ( 1 ) default ' 0 ' ,
2014-03-05 12:43:03 +01:00
` field1_recovery ` text NOT NULL ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
` field2_recovery ` text NOT NULL ,
` field3_recovery ` text NOT NULL ,
2012-10-29 09:45:06 +01:00
` field4_recovery ` text NOT NULL ,
` field5_recovery ` text NOT NULL ,
` field6_recovery ` text NOT NULL ,
` field7_recovery ` text NOT NULL ,
` field8_recovery ` text NOT NULL ,
` field9_recovery ` text NOT NULL ,
` field10_recovery ` text NOT NULL ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
` priority ` tinyint ( 4 ) default ' 0 ' ,
` id_group ` mediumint ( 8 ) unsigned NULL default 0 ,
` special_day ` tinyint ( 1 ) default 0 ,
2013-01-23 15:20:54 +01:00
` wizard_level ` enum ( ' basic ' , ' advanced ' , ' nowizard ' ) default ' nowizard ' ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
PRIMARY KEY ( ` id ` ) ,
KEY ` idx_template_action ` ( ` id_alert_action ` ) ,
FOREIGN KEY ( ` id_alert_action ` ) REFERENCES talert_actions ( ` id ` )
ON DELETE SET NULL ON UPDATE CASCADE
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
-- -----------------------------------------------------
-- Table `talert_template_modules`
-- -----------------------------------------------------
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
CREATE TABLE IF NOT EXISTS ` talert_template_modules ` (
2010-08-05 19:02:45 +02:00
` id ` int ( 10 ) unsigned NOT NULL auto_increment ,
` id_agent_module ` int ( 10 ) unsigned NOT NULL ,
` id_alert_template ` int ( 10 ) unsigned NOT NULL ,
` id_policy_alerts ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` internal_counter ` int ( 4 ) default ' 0 ' ,
` last_fired ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` last_reference ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` times_fired ` int ( 3 ) NOT NULL default ' 0 ' ,
` disabled ` tinyint ( 1 ) default ' 0 ' ,
2010-09-13 16:21:05 +02:00
` standby ` tinyint ( 1 ) default ' 0 ' ,
2010-08-05 19:02:45 +02:00
` priority ` tinyint ( 4 ) default ' 0 ' ,
` force_execution ` tinyint ( 1 ) default ' 0 ' ,
PRIMARY KEY ( ` id ` ) ,
KEY ` idx_template_module ` ( ` id_agent_module ` ) ,
FOREIGN KEY ( ` id_agent_module ` ) REFERENCES tagente_modulo ( ` id_agente_modulo ` )
ON DELETE CASCADE ON UPDATE CASCADE ,
FOREIGN KEY ( ` id_alert_template ` ) REFERENCES talert_templates ( ` id ` )
ON DELETE CASCADE ON UPDATE CASCADE ,
2011-08-04 14:31:09 +02:00
UNIQUE ( ` id_agent_module ` , ` id_alert_template ` ) ,
INDEX force_execution ( ` force_execution ` )
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
-- -----------------------------------------------------
-- Table `talert_template_module_actions`
-- -----------------------------------------------------
2010-09-15 11:54:48 +02:00
CREATE TABLE IF NOT EXISTS ` talert_template_module_actions ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
` id ` int ( 10 ) unsigned NOT NULL auto_increment ,
` id_alert_template_module ` int ( 10 ) unsigned NOT NULL ,
` id_alert_action ` int ( 10 ) unsigned NOT NULL ,
` fires_min ` int ( 3 ) unsigned default 0 ,
` fires_max ` int ( 3 ) unsigned default 0 ,
` module_action_threshold ` int ( 10 ) NOT NULL default ' 0 ' ,
` last_execution ` bigint ( 20 ) NOT NULL default ' 0 ' ,
PRIMARY KEY ( ` id ` ) ,
FOREIGN KEY ( ` id_alert_template_module ` ) REFERENCES talert_template_modules ( ` id ` )
ON DELETE CASCADE ON UPDATE CASCADE ,
FOREIGN KEY ( ` id_alert_action ` ) REFERENCES talert_actions ( ` id ` )
ON DELETE CASCADE ON UPDATE CASCADE
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
-- -----------------------------------------------------
-- Table `talert_special_days`
-- -----------------------------------------------------
2012-01-25 Junichi Satoh <junichi@rworks.jp>
* godmode/menu.php, godmode/alerts/alert_special_days.php,
godmode/alerts/configure_alert_special_days.php,
godmode/alerts/configure_alert_template.php,
extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql,
pandoradb.oracle.sql, pandoradb.postgreSQL.sql, pandoradb.sql,
include/functions_alerts.php: Added special days feature. It allows
to define special days (holidays and special working days) for
alert templates.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5421 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-01-25 07:13:43 +01:00
CREATE TABLE IF NOT EXISTS ` talert_special_days ` (
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
` id ` int ( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
2013-04-02 08:29:38 +02:00
` id_group ` INT ( 10 ) NOT NULL DEFAULT 0 ,
2014-08-13 07:02:30 +02:00
` date ` date NOT NULL DEFAULT ' 1970-01-01 ' ,
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
` same_day ` enum ( ' monday ' , ' tuesday ' , ' wednesday ' , ' thursday ' , ' friday ' , ' saturday ' , ' sunday ' ) NOT NULL DEFAULT ' sunday ' ,
` description ` text ,
PRIMARY KEY ( ` id ` )
2012-01-25 Junichi Satoh <junichi@rworks.jp>
* godmode/menu.php, godmode/alerts/alert_special_days.php,
godmode/alerts/configure_alert_special_days.php,
godmode/alerts/configure_alert_template.php,
extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql,
pandoradb.oracle.sql, pandoradb.postgreSQL.sql, pandoradb.sql,
include/functions_alerts.php: Added special days feature. It allows
to define special days (holidays and special working days) for
alert templates.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5421 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-01-25 07:13:43 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
-- -----------------------------------------------------
-- Table `tattachment`
-- -----------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tattachment ` (
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
` id_attachment ` int ( 10 ) unsigned NOT NULL auto_increment ,
` id_incidencia ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` id_usuario ` varchar ( 60 ) NOT NULL default ' ' ,
` filename ` varchar ( 255 ) NOT NULL default ' ' ,
` description ` varchar ( 150 ) default ' ' ,
` size ` bigint ( 20 ) unsigned NOT NULL default ' 0 ' ,
PRIMARY KEY ( ` id_attachment ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
-- -----------------------------------------------------
-- Table `tconfig`
-- -----------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tconfig ` (
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
` id_config ` int ( 10 ) unsigned NOT NULL auto_increment ,
` token ` varchar ( 100 ) NOT NULL default ' ' ,
` value ` text NOT NULL ,
PRIMARY KEY ( ` id_config ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2006-03-27 05:37:27 +02:00
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
-- -----------------------------------------------------
-- Table `tconfig_os`
-- -----------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tconfig_os ` (
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
` id_os ` int ( 10 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 100 ) NOT NULL default ' ' ,
` description ` varchar ( 250 ) default ' ' ,
` icon_name ` varchar ( 100 ) default ' ' ,
PRIMARY KEY ( ` id_os ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-11-07 18:49:31 +01:00
-- ---------------------------------------------------------------------
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
-- Table `tevento`
2012-11-07 18:49:31 +01:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tevento ` (
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
` id_evento ` bigint ( 20 ) unsigned NOT NULL auto_increment ,
` id_agente ` int ( 10 ) NOT NULL default ' 0 ' ,
` id_usuario ` varchar ( 100 ) NOT NULL default ' 0 ' ,
` id_grupo ` mediumint ( 4 ) NOT NULL default ' 0 ' ,
` estado ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` timestamp ` datetime NOT NULL default ' 1970-01-01 00:00:00 ' ,
` evento ` text NOT NULL ,
` utimestamp ` bigint ( 20 ) NOT NULL default ' 0 ' ,
2012-09-13 16:06:08 +02:00
` event_type ` enum ( ' going_unknown ' , ' unknown ' , ' alert_fired ' , ' alert_recovered ' , ' alert_ceased ' , ' alert_manual_validation ' , ' recon_host_detected ' , ' system ' , ' error ' , ' new_agent ' , ' going_up_warning ' , ' going_up_critical ' , ' going_down_warning ' , ' going_down_normal ' , ' going_down_critical ' , ' going_up_normal ' , ' configuration_change ' ) default ' unknown ' ,
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
` id_agentmodule ` int ( 10 ) NOT NULL default ' 0 ' ,
` id_alert_am ` int ( 10 ) NOT NULL default ' 0 ' ,
` criticity ` int ( 4 ) unsigned NOT NULL default ' 0 ' ,
` user_comment ` text NOT NULL ,
` tags ` text NOT NULL ,
` source ` tinytext NOT NULL ,
` id_extra ` tinytext NOT NULL ,
2014-05-10 18:02:20 +02:00
` critical_instructions ` text NOT NULL ,
` warning_instructions ` text NOT NULL ,
` unknown_instructions ` text NOT NULL ,
2012-10-01 16:04:30 +02:00
` owner_user ` VARCHAR ( 100 ) NOT NULL DEFAULT ' ' ,
` ack_utimestamp ` BIGINT ( 20 ) NOT NULL DEFAULT ' 0 ' ,
2013-09-09 18:21:45 +02:00
` custom_data ` TEXT NOT NULL ,
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
PRIMARY KEY ( ` id_evento ` ) ,
2013-01-31 19:05:22 +01:00
KEY ` idx_agente ` ( ` id_agente ` ) ,
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
KEY ` idx_agentmodule ` ( ` id_agentmodule ` ) ,
2013-01-31 19:05:22 +01:00
KEY ` idx_utimestamp ` USING BTREE ( ` utimestamp ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2008-06-13 Sancho Lerena <slerena@gmail.com>
* index.php: Added pure (Fullscreen). HTML code cleanup and user session.
* pandoradb.sql: talert_snmp: Added priority field.
* pandoradb_data.sql: Changes default values in talerta. tconfig_os, tgrupo
and some links.
* header.php: Fixed some user session management.
* logon_ok.php: New design for welcome screen, odometer is over.
* menu.php, godmode/menu.php: Some ACL improvements.
* agent_disk_conf_editor.php: Minor fix in view link.
* configurar_agente.php, agent_manager.php: Added parent combo and better
ACL checks. New remote configuration control for get timestamp info of
config file.
* modify_alert.php: Changes to use new internal Mail alert.
* config.php: Some items moved to config_process. (font, attachment and
default style).
* functions.php: Added form_agent_combo(), form_event_type_combo(),
form_priority() and return_priority() functions.
* functions_db.php: Added smal_event_table() to render a variable table
with latest events (filtered).
* pandora.css. Added pure and priority colors.
* estado_alertas.php: Fixed ACL problems.
* stado_generalagente.php: Graph of modules now represents modules that
has generated events. Old graph is not used anymore. Also display parent.
* estado_grupo.php: Border of boxes is now thicker.
* tactical.php: New screen, almost all code changed. Odometer is not used
anymore, added some new items, like module LAG meter, module sanity, and
other general metrics.
* ver_agente.php: Now renders also event for each agent view. Alert manual
validation generate a new event.
* events.php: New event system. 90% new code. A LOT of new features,
including full screen, coloured (by priority) and filters by six fields.
* snmp_alert.php: Added support for alert priority.
* operation/users/user.php: No longer a user with UM privileges could
see any other user.
* render_view.php: Added fullscreen support for visual maps.
* fgraph.php: Added support for session checking in graphs (at least!).
New graphics for events (some changed it's function like events by group),
and feature added to progress GD implementation.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@860 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-06-13 18:59:54 +02:00
-- Criticity: 0 - Maintance (grey)
2009-01-12 Sancho Lerena <slerena@artica.es>
* pandoradb.sql: Removed fields "timestamp" and "id_agente" (and altered
some indexes) on tagente_datos, tagente_datos_string and
tagente_datos_inc.
tagente_estado table: removed cambio, added status_changes, last_status.
tagente_modulo: added five new fields (warning,critical mgmt., flipflop
detection, history module and delete_pending bit.
* agent_manager.php: Group ALL not shown anymore.
* configurar_agente.php: Support for new options. Delete a module now
mark for deletion the module, not delete data (It's VERY slow!).
* modificar_agente.php: Delete agent now uses the global function,
minor fixes.
* module_manager_editor.php: New fields initializacion.
* module_manager_editor_network.php: At this time, the first module
editor who implements the new fields and improve old ones (tcp data).
* setup.php: Added support for new token: event_view_hr (Filter of max
old (in hr) for the event viewer. Removed old tokens show_unknown and
show_lastalert.
* functions.php: format_for_graph() has an important BUG that makes
all units rendered without the "K" !!!!. Fixed.
* delete_agent.php: Delete remote config (if present). Also mark
for deletion modules instead delete them (and let the data without
being deleted, because it's a HUGE consuming time, and it's left
for the daily db maintance process).
* estado_agente.php: Updated code for view new status.
* estado_generalagente.php: Total packets are removed from this view,
this was a huge time consuming SQL operation that don't give important
infomation. Groupname is now visualized.
* estado_ultimopaquete.php,
* estado_monitores.php,
* estado_grupo.php: Rewritten much code to view new status and other
minor changes.
* ver_agente.php: Data view now works under the tabs and other minor
changes.
* events.php: Support for the new events and status. Added filter for
username and for a max. hours old events. Some boxes are now hidden
by default.
* fgraph.php: Some graphs are now fixed and uses tagente_datos and
tagent_access with utimestamp and without id_agent index. Works faster
* images/*: Updated icons (module types) and two new bulb colors.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1326 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 04:53:33 +01:00
-- Criticity: 1 - Informational (blue)
-- Criticity: 2 - Normal (green) (status 0)
-- Criticity: 3 - Warning (yellow) (status 2)
-- Criticity: 4 - Critical (red) (status 1)
2007-03-12 18:58:52 +01:00
2012-11-07 18:49:31 +01:00
-- ---------------------------------------------------------------------
2012-08-21 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.oracle.sql, operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php,
operation/agentes/ver_agente.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/agent_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php, pandoradb.sql,
pandoradb.postgreSQL.sql: added the feature to set a agent in
"Quiet" mode.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6896 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-21 19:12:02 +02:00
-- Table `tgrupo`
2012-11-07 18:49:31 +01:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tgrupo ` (
2010-07-14 11:59:00 +02:00
` id_grupo ` mediumint ( 4 ) unsigned NOT NULL auto_increment ,
2011-02-02 19:18:48 +01:00
` nombre ` varchar ( 100 ) NOT NULL default ' ' ,
2012-10-09 04:02:25 +02:00
` icon ` varchar ( 50 ) default ' world ' ,
2010-07-14 11:59:00 +02:00
` parent ` mediumint ( 4 ) unsigned NOT NULL default ' 0 ' ,
` propagate ` tinyint ( 1 ) unsigned NOT NULL default ' 0 ' ,
` disabled ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` custom_id ` varchar ( 255 ) default ' ' ,
2011-05-16 17:56:27 +02:00
` id_skin ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
2012-09-12 10:13:57 +02:00
` description ` text ,
2012-10-24 10:57:36 +02:00
` contact ` text ,
` other ` text ,
2013-04-11 17:02:22 +02:00
PRIMARY KEY ( ` id_grupo ` ) ,
KEY ` parent_index ` ( ` parent ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-11-07 18:49:31 +01:00
-- ---------------------------------------------------------------------
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
-- Table `tincidencia`
2012-11-07 18:49:31 +01:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tincidencia ` (
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
` id_incidencia ` bigint ( 6 ) unsigned zerofill NOT NULL auto_increment ,
` inicio ` datetime NOT NULL default ' 1970-01-01 00:00:00 ' ,
` cierre ` datetime NOT NULL default ' 1970-01-01 00:00:00 ' ,
` titulo ` text NOT NULL ,
` descripcion ` text NOT NULL ,
` id_usuario ` varchar ( 60 ) NOT NULL default ' ' ,
` origen ` varchar ( 100 ) NOT NULL default ' ' ,
` estado ` int ( 10 ) NOT NULL default ' 0 ' ,
` prioridad ` int ( 10 ) NOT NULL default ' 0 ' ,
` id_grupo ` mediumint ( 4 ) unsigned NOT NULL default ' 0 ' ,
` actualizacion ` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP ,
` id_creator ` varchar ( 60 ) default NULL ,
` id_lastupdate ` varchar ( 60 ) default NULL ,
` id_agente_modulo ` bigint ( 100 ) NOT NULL ,
` notify_email ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` id_agent ` int ( 10 ) unsigned NULL default 0 ,
PRIMARY KEY ( ` id_incidencia ` ) ,
KEY ` incident_index_1 ` ( ` id_usuario ` , ` id_incidencia ` ) ,
KEY ` id_agente_modulo ` ( ` id_agente_modulo ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2006-03-27 05:37:27 +02:00
2012-11-07 18:49:31 +01:00
-- ---------------------------------------------------------------------
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
-- Table `tlanguage`
2012-11-07 18:49:31 +01:00
-- ---------------------------------------------------------------------
2012-10-09 04:02:25 +02:00
CREATE TABLE IF NOT EXISTS ` tlanguage ` (
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
` id_language ` varchar ( 6 ) NOT NULL default ' ' ,
` name ` varchar ( 100 ) NOT NULL default ' ' ,
PRIMARY KEY ( ` id_language ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
-- -----------------------------------------------------
-- Table `tlink`
-- -----------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tlink ` (
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
` id_link ` int ( 10 ) unsigned zerofill NOT NULL auto_increment ,
` name ` varchar ( 100 ) NOT NULL default ' ' ,
` link ` varchar ( 255 ) NOT NULL default ' ' ,
PRIMARY KEY ( ` id_link ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2006-03-27 05:37:27 +02:00
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
-- -----------------------------------------------------
-- Table `tmensajes`
-- -----------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tmensajes ` (
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
` id_mensaje ` int ( 10 ) unsigned NOT NULL auto_increment ,
` id_usuario_origen ` varchar ( 60 ) NOT NULL default ' ' ,
` id_usuario_destino ` varchar ( 60 ) NOT NULL default ' ' ,
` mensaje ` text NOT NULL ,
` timestamp ` bigint ( 20 ) unsigned NOT NULL default ' 0 ' ,
` subject ` varchar ( 255 ) NOT NULL default ' ' ,
` estado ` int ( 4 ) unsigned NOT NULL default ' 0 ' ,
PRIMARY KEY ( ` id_mensaje ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
-- Table `tmodule_group`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tmodule_group ` (
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
` id_mg ` tinyint ( 4 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 150 ) NOT NULL default ' ' ,
PRIMARY KEY ( ` id_mg ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2014-03-18 Alejandro Gallardo <alejandro.gallardo@artica.es>
* pandoradb.data.oracle.sql,
pandoradb.data.postgreSQL.sql,
pandoradb.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql:
Added the table "tmodule_relationship".
* operation/agentes/estado_generalagente.php: Added a
new table to show the network interfaces of the agent.
Minor fixes.
* include/styles/pandora.css: Added properties for the
class transparent'.
* include/ajax/module.php: Fixed an error and added code
to retrieve a module autocomplete input or add, remove
or update a module relation via ajax.
* include/functions_modules.php: Added the functions
"modules_get_relations", "modules_relation_exists",
"modules_add_relation", "modules_delete_relation" and
"modules_change_relation_lock".
* godmode/agentes/module_manager_editor_common.php:
Added a table and control to show, add or delete
relations with other modules. Added the javascript
functions "change_modules_autocomplete_input",
"add_new_relation", "change_lock_relation" and
"delete_relation".
* godmode/agentes/module_manager_editor.php: Added a
line to show the module relations table and control.
* godmode/agentes/module_manager_editor_network.php:
Minor fix.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9610 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-03-18 12:49:33 +01:00
-- ----------------------------------------------------------------------
-- Table `tmodule_relationship`
-- ----------------------------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tmodule_relationship ` (
` id ` int ( 10 ) unsigned NOT NULL auto_increment ,
` module_a ` int ( 10 ) unsigned NOT NULL ,
` module_b ` int ( 10 ) unsigned NOT NULL ,
` disable_update ` tinyint ( 1 ) unsigned NOT NULL default ' 0 ' ,
2014-04-03 12:44:52 +02:00
` id_rt ` int ( 10 ) unsigned NOT NULL DEFAULT 0 ,
2014-03-18 Alejandro Gallardo <alejandro.gallardo@artica.es>
* pandoradb.data.oracle.sql,
pandoradb.data.postgreSQL.sql,
pandoradb.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql:
Added the table "tmodule_relationship".
* operation/agentes/estado_generalagente.php: Added a
new table to show the network interfaces of the agent.
Minor fixes.
* include/styles/pandora.css: Added properties for the
class transparent'.
* include/ajax/module.php: Fixed an error and added code
to retrieve a module autocomplete input or add, remove
or update a module relation via ajax.
* include/functions_modules.php: Added the functions
"modules_get_relations", "modules_relation_exists",
"modules_add_relation", "modules_delete_relation" and
"modules_change_relation_lock".
* godmode/agentes/module_manager_editor_common.php:
Added a table and control to show, add or delete
relations with other modules. Added the javascript
functions "change_modules_autocomplete_input",
"add_new_relation", "change_lock_relation" and
"delete_relation".
* godmode/agentes/module_manager_editor.php: Added a
line to show the module relations table and control.
* godmode/agentes/module_manager_editor_network.php:
Minor fix.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9610 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-03-18 12:49:33 +01:00
PRIMARY KEY ( ` id ` ) ,
FOREIGN KEY ( ` module_a ` ) REFERENCES tagente_modulo ( ` id_agente_modulo ` )
ON DELETE CASCADE ,
FOREIGN KEY ( ` module_b ` ) REFERENCES tagente_modulo ( ` id_agente_modulo ` )
ON DELETE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
-- Table `tnetwork_component`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tnetwork_component ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_nc ` int ( 10 ) unsigned NOT NULL auto_increment ,
2013-09-16 11:55:48 +02:00
` name ` text NOT NULL ,
2014-01-20 15:45:17 +01:00
` description ` TEXT NOT NULL ,
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_group ` int ( 6 ) NOT NULL default ' 1 ' ,
` type ` smallint ( 6 ) NOT NULL default ' 6 ' ,
` max ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` min ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` module_interval ` mediumint ( 8 ) unsigned NOT NULL default ' 0 ' ,
` tcp_port ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` tcp_send ` text NOT NULL ,
` tcp_rcv ` text NOT NULL ,
` snmp_community ` varchar ( 255 ) NOT NULL default ' NULL ' ,
` snmp_oid ` varchar ( 400 ) NOT NULL ,
` id_module_group ` tinyint ( 4 ) unsigned NOT NULL default ' 0 ' ,
` id_modulo ` int ( 10 ) unsigned default ' 0 ' ,
` id_plugin ` INTEGER unsigned default ' 0 ' ,
` plugin_user ` text ,
` plugin_pass ` text ,
` plugin_parameter ` text ,
2012-10-29 Ramon Novoa <rnovoa@artica.es>
* include/functions_reporting.php,
include/javascript/pandora_modules.js,
include/functions_network_components.php,
include/functions_api.php,
include/functions_netflow.php,
pandoradb.sql,
pandoradb.postgreSQL.sql,
pandoradb.oracle.sql,
extensions/resource_registration.php,
extensions/plugin_registration.php,
operation/menu.php,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
godmode/agentes/agent_template.php,
godmode/agentes/module_manager_editor_common.php,
godmode/agentes/configurar_agente.php,
godmode/agentes/module_manager_editor.php,
godmode/servers/plugin.php,
godmode/menu.php,
godmode/modules/manage_network_components_form.php,
godmode/modules/manage_network_templates.php,
godmode/modules/manage_network_components_form_wmi.php,
godmode/modules/manage_network_components.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php: Added support for
custom timeout and retries to remote modules.
* operation/netflow/nf_reporting.php,
operation/netflow/nf_view.php,
godmode/netflow/nf_report_item.php,
godmode/netflow/nf_report.php,
godmode/netflow/nf_report_form.php,
godmode/netflow/nf.php: Deleted from repository. Netflow reports are
now integrated into custom reports.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7103 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-10-29 11:13:49 +01:00
` max_timeout ` int ( 4 ) unsigned default ' 0 ' ,
` max_retries ` int ( 4 ) unsigned default ' 0 ' ,
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` history_data ` tinyint ( 1 ) unsigned default ' 1 ' ,
` min_warning ` double ( 18 , 2 ) default 0 ,
` max_warning ` double ( 18 , 2 ) default 0 ,
` str_warning ` text ,
` min_critical ` double ( 18 , 2 ) default 0 ,
` max_critical ` double ( 18 , 2 ) default 0 ,
` str_critical ` text ,
` min_ff_event ` int ( 4 ) unsigned default ' 0 ' ,
` custom_string_1 ` text ,
` custom_string_2 ` text ,
` custom_string_3 ` text ,
` custom_integer_1 ` int ( 10 ) default 0 ,
` custom_integer_2 ` int ( 10 ) default 0 ,
2014-09-22 17:12:36 +02:00
` post_process ` double ( 24 , 15 ) default 0 ,
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` unit ` text ,
2013-01-23 15:20:54 +01:00
` wizard_level ` enum ( ' basic ' , ' advanced ' , ' nowizard ' ) default ' nowizard ' ,
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` macros ` text ,
2014-05-10 18:02:20 +02:00
` critical_instructions ` text NOT NULL ,
` warning_instructions ` text NOT NULL ,
` unknown_instructions ` text NOT NULL ,
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` critical_inverse ` tinyint ( 1 ) unsigned default ' 0 ' ,
` warning_inverse ` tinyint ( 1 ) unsigned default ' 0 ' ,
2012-12-05 13:55:44 +01:00
` id_category ` int ( 10 ) default 0 ,
2012-12-10 11:50:20 +01:00
` tags ` text NOT NULL ,
2014-05-10 18:02:20 +02:00
` disabled_types_event ` TEXT NOT NULL ,
` module_macros ` TEXT NOT NULL ,
2014-05-25 09:55:26 +02:00
` min_ff_event_normal ` int ( 4 ) unsigned default ' 0 ' ,
` min_ff_event_warning ` int ( 4 ) unsigned default ' 0 ' ,
` min_ff_event_critical ` int ( 4 ) unsigned default ' 0 ' ,
` each_ff ` tinyint ( 1 ) unsigned default ' 0 ' ,
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
PRIMARY KEY ( ` id_nc ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
-- Table `tnetwork_component_group`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tnetwork_component_group ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_sg ` int ( 10 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 200 ) NOT NULL default ' ' ,
` parent ` mediumint ( 8 ) unsigned NOT NULL default ' 0 ' ,
PRIMARY KEY ( ` id_sg ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
-- Table `tnetwork_profile`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tnetwork_profile ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_np ` int ( 10 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 100 ) NOT NULL default ' ' ,
` description ` varchar ( 250 ) default ' ' ,
PRIMARY KEY ( ` id_np ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
-- Table `tnetwork_profile_component`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tnetwork_profile_component ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_nc ` mediumint ( 8 ) unsigned NOT NULL default ' 0 ' ,
` id_np ` mediumint ( 8 ) unsigned NOT NULL default ' 0 ' ,
KEY ` id_np ` ( ` id_np ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
-- Table `tnota`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tnota ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_nota ` bigint ( 6 ) unsigned zerofill NOT NULL auto_increment ,
` id_incident ` bigint ( 6 ) unsigned zerofill NOT NULL ,
` id_usuario ` varchar ( 100 ) NOT NULL default ' 0 ' ,
` timestamp ` timestamp NOT NULL default CURRENT_TIMESTAMP ,
` nota ` mediumtext NOT NULL ,
PRIMARY KEY ( ` id_nota ` ) ,
KEY ` id_incident ` ( ` id_incident ` )
2008-12-10 21:15:38 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2006-03-27 05:37:27 +02:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- Table `torigen`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` torigen ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` origen ` varchar ( 100 ) NOT NULL default ' '
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2006-03-27 05:37:27 +02:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- Table `tperfil`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tperfil ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id_perfil ` int ( 10 ) unsigned NOT NULL auto_increment ,
` name ` TEXT NOT NULL ,
` incident_edit ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
` incident_view ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
` incident_management ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
` agent_view ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
` agent_edit ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
` alert_edit ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
` user_management ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
` db_management ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
` alert_management ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
` pandora_management ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
2012-12-26 13:16:39 +01:00
` report_view ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
` report_edit ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
` report_management ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
` event_view ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
` event_edit ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
` event_management ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
2013-01-11 14:18:27 +01:00
` agent_disable ` tinyint ( 3 ) NOT NULL default ' 0 ' ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
PRIMARY KEY ( ` id_perfil ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- Table `trecon_script`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-10-15 15:03:03 +02:00
CREATE TABLE IF NOT EXISTS ` trecon_script ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id_recon_script ` int ( 10 ) NOT NULL auto_increment ,
` name ` varchar ( 100 ) default ' ' ,
` description ` TEXT ,
` script ` varchar ( 250 ) default ' ' ,
2014-04-22 11:26:55 +02:00
` macros ` TEXT ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
PRIMARY KEY ( ` id_recon_script ` )
2010-10-15 15:03:03 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- Table `trecon_task`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` trecon_task ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id_rt ` int ( 10 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 100 ) NOT NULL default ' ' ,
` description ` varchar ( 250 ) NOT NULL default ' ' ,
2014-05-10 18:02:20 +02:00
` subnet ` text NOT NULL ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id_network_profile ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` create_incident ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` id_group ` int ( 10 ) unsigned NOT NULL default ' 1 ' ,
` utimestamp ` bigint ( 20 ) unsigned NOT NULL default ' 0 ' ,
` status ` tinyint ( 4 ) NOT NULL default ' 0 ' ,
` interval_sweep ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` id_recon_server ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` id_os ` tinyint ( 4 ) NOT NULL default ' 0 ' ,
` recon_ports ` varchar ( 250 ) NOT NULL default ' ' ,
` snmp_community ` varchar ( 64 ) NOT NULL default ' public ' ,
` id_recon_script ` int ( 10 ) ,
2014-05-10 18:02:20 +02:00
` field1 ` text NOT NULL ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` field2 ` varchar ( 250 ) NOT NULL default ' ' ,
` field3 ` varchar ( 250 ) NOT NULL default ' ' ,
` field4 ` varchar ( 250 ) NOT NULL default ' ' ,
` os_detect ` tinyint ( 1 ) unsigned default ' 0 ' ,
` resolve_names ` tinyint ( 1 ) unsigned default ' 0 ' ,
` parent_detection ` tinyint ( 1 ) unsigned default ' 0 ' ,
` parent_recursion ` tinyint ( 1 ) unsigned default ' 0 ' ,
` disabled ` tinyint ( 1 ) unsigned NOT NULL DEFAULT ' 0 ' ,
2014-04-22 11:26:55 +02:00
` macros ` TEXT ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
PRIMARY KEY ( ` id_rt ` ) ,
KEY ` recon_task_daemon ` ( ` id_recon_server ` )
2008-07-09 18:41:13 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- Table `tserver`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tserver ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id_server ` int ( 10 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 100 ) NOT NULL default ' ' ,
` ip_address ` varchar ( 100 ) NOT NULL default ' ' ,
` status ` int ( 11 ) NOT NULL default ' 0 ' ,
` laststart ` datetime NOT NULL default ' 1970-01-01 00:00:00 ' ,
` keepalive ` datetime NOT NULL default ' 1970-01-01 00:00:00 ' ,
` snmp_server ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` network_server ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` data_server ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` master ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` checksum ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` description ` varchar ( 255 ) default NULL ,
` recon_server ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` version ` varchar ( 20 ) NOT NULL default ' ' ,
` plugin_server ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` prediction_server ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` wmi_server ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` export_server ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` server_type ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
` queued_modules ` int ( 5 ) unsigned NOT NULL default ' 0 ' ,
` threads ` int ( 5 ) unsigned NOT NULL default ' 0 ' ,
` lag_time ` int ( 11 ) NOT NULL default 0 ,
` lag_modules ` int ( 11 ) NOT NULL default 0 ,
` total_modules_running ` int ( 11 ) NOT NULL default 0 ,
` my_modules ` int ( 11 ) NOT NULL default 0 ,
` stat_utimestamp ` bigint ( 20 ) NOT NULL default ' 0 ' ,
PRIMARY KEY ( ` id_server ` ) ,
2013-01-31 19:05:22 +01:00
KEY ` name ` ( ` name ` )
2013-02-12 11:49:40 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2009-09-25 02:21:00 +02:00
-- server types:
-- 0 data
-- 1 network
-- 2 snmp trap console
-- 3 recon
-- 4 plugin
-- 5 prediction
-- 6 wmi
-- 7 export
-- 8 inventory
-- 9 web
2009-09-04 20:41:27 +02:00
-- TODO: drop 2.x xxxx_server fields, unused since server_type exists.
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- Table `tsesion`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tsesion ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id_sesion ` bigint ( 20 ) unsigned NOT NULL auto_increment ,
` id_usuario ` varchar ( 60 ) NOT NULL default ' 0 ' ,
` ip_origen ` varchar ( 100 ) NOT NULL default ' ' ,
` accion ` varchar ( 100 ) NOT NULL default ' ' ,
` descripcion ` text NOT NULL ,
` fecha ` datetime NOT NULL default ' 1970-01-01 00:00:00 ' ,
` utimestamp ` bigint ( 20 ) unsigned NOT NULL default ' 0 ' ,
PRIMARY KEY ( ` id_sesion ` ) ,
KEY ` idx_user ` ( ` id_usuario ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- Table `ttipo_modulo`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` ttipo_modulo ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id_tipo ` smallint ( 5 ) unsigned NOT NULL auto_increment ,
` nombre ` varchar ( 100 ) NOT NULL default ' ' ,
` categoria ` int ( 11 ) NOT NULL default ' 0 ' ,
` descripcion ` varchar ( 100 ) NOT NULL default ' ' ,
` icon ` varchar ( 100 ) default NULL ,
PRIMARY KEY ( ` id_tipo ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- Table `ttrap`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` ttrap ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id_trap ` bigint ( 20 ) unsigned NOT NULL auto_increment ,
` source ` varchar ( 50 ) NOT NULL default ' ' ,
` oid ` text NOT NULL ,
` oid_custom ` text ,
` type ` int ( 11 ) NOT NULL default ' 0 ' ,
` type_custom ` varchar ( 100 ) default ' ' ,
` value ` text ,
` value_custom ` text ,
` alerted ` smallint ( 6 ) NOT NULL default ' 0 ' ,
` status ` smallint ( 6 ) NOT NULL default ' 0 ' ,
` id_usuario ` varchar ( 150 ) default ' ' ,
` timestamp ` datetime NOT NULL default ' 1970-01-01 00:00:00 ' ,
` priority ` tinyint ( 4 ) unsigned NOT NULL default ' 2 ' ,
` text ` varchar ( 255 ) default ' ' ,
` description ` varchar ( 255 ) default ' ' ,
` severity ` tinyint ( 4 ) unsigned NOT NULL default ' 2 ' ,
PRIMARY KEY ( ` id_trap ` ) ,
INDEX timestamp ( ` timestamp ` ) ,
2013-07-10 18:49:05 +02:00
INDEX status ( ` status ` ) ,
INDEX source ( ` source ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2006-03-27 05:37:27 +02:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- Table `tusuario`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tusuario ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id_user ` varchar ( 60 ) NOT NULL default ' 0 ' ,
` fullname ` varchar ( 255 ) NOT NULL ,
` firstname ` varchar ( 255 ) NOT NULL ,
` lastname ` varchar ( 255 ) NOT NULL ,
` middlename ` varchar ( 255 ) NOT NULL ,
` password ` varchar ( 45 ) default NULL ,
` comments ` varchar ( 200 ) default NULL ,
` last_connect ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` registered ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` email ` varchar ( 100 ) default NULL ,
` phone ` varchar ( 100 ) default NULL ,
` is_admin ` tinyint ( 1 ) unsigned NOT NULL default ' 0 ' ,
` language ` varchar ( 10 ) default NULL ,
` timezone ` varchar ( 50 ) default ' ' ,
` block_size ` int ( 4 ) NOT NULL DEFAULT 20 ,
` flash_chart ` int ( 4 ) NOT NULL DEFAULT 1 ,
2014-05-10 18:02:20 +02:00
` id_skin ` int ( 10 ) unsigned NOT NULL DEFAULT 0 ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` disabled ` int ( 4 ) NOT NULL DEFAULT 0 ,
` shortcut ` tinyint ( 1 ) DEFAULT 0 ,
` shortcut_data ` text ,
` section ` TEXT NOT NULL ,
` data_section ` TEXT NOT NULL ,
` force_change_pass ` tinyint ( 1 ) unsigned NOT NULL default 0 ,
` last_pass_change ` DATETIME NOT NULL DEFAULT 0 ,
` last_failed_login ` DATETIME NOT NULL DEFAULT 0 ,
` failed_attempt ` int ( 4 ) NOT NULL DEFAULT 0 ,
` login_blocked ` tinyint ( 1 ) unsigned NOT NULL default 0 ,
2013-01-23 15:20:54 +01:00
` metaconsole_access ` enum ( ' basic ' , ' advanced ' ) default ' basic ' ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` not_login ` tinyint ( 1 ) unsigned NOT NULL DEFAULT 0 ,
2013-04-22 12:31:20 +02:00
` metaconsole_agents_manager ` tinyint ( 1 ) unsigned NOT NULL default 0 ,
` metaconsole_assigned_server ` int ( 10 ) unsigned NOT NULL default 0 ,
` metaconsole_access_node ` tinyint ( 1 ) unsigned NOT NULL default 0 ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
UNIQUE KEY ` id_user ` ( ` id_user ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
-- Table `tusuario_perfil`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tusuario_perfil ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_up ` bigint ( 10 ) unsigned NOT NULL auto_increment ,
` id_usuario ` varchar ( 100 ) NOT NULL default ' ' ,
` id_perfil ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` id_grupo ` int ( 10 ) NOT NULL default ' 0 ' ,
` assigned_by ` varchar ( 100 ) NOT NULL default ' ' ,
` id_policy ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
2013-01-09 10:25:07 +01:00
` tags ` text NOT NULL ,
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
PRIMARY KEY ( ` id_up ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
-- Table `tnews`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tnews ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_news ` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT ,
` author ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` subject ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` text ` TEXT NOT NULL ,
` timestamp ` DATETIME NOT NULL DEFAULT 0 ,
2014-05-30 11:27:20 +02:00
` id_group ` int ( 10 ) NOT NULL default 0 ,
` modal ` tinyint ( 1 ) DEFAULT 0 ,
` expire ` tinyint ( 1 ) DEFAULT 0 ,
` expire_timestamp ` DATETIME NOT NULL DEFAULT 0 ,
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
PRIMARY KEY ( ` id_news ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-04-19 20:50:07 +02:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
-- Table `tgraph`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tgraph ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_graph ` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT ,
` id_user ` varchar ( 100 ) NOT NULL default ' ' ,
` name ` varchar ( 150 ) NOT NULL default ' ' ,
` description ` TEXT NOT NULL ,
` period ` int ( 11 ) NOT NULL default ' 0 ' ,
` width ` smallint ( 5 ) UNSIGNED NOT NULL DEFAULT 0 ,
` height ` smallint ( 5 ) UNSIGNED NOT NULL DEFAULT 0 ,
` private ` tinyint ( 1 ) UNSIGNED NOT NULL default 0 ,
` events ` tinyint ( 1 ) UNSIGNED NOT NULL default 0 ,
` stacked ` tinyint ( 1 ) UNSIGNED NOT NULL default 0 ,
` id_group ` mediumint ( 8 ) unsigned NULL default 0 ,
` id_graph_template ` int ( 11 ) NOT NULL default 0 ,
PRIMARY KEY ( ` id_graph ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-04-19 20:50:07 +02:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
-- Table `tgraph_source`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tgraph_source ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_gs ` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT ,
` id_graph ` int ( 11 ) NOT NULL default 0 ,
` id_agent_module ` int ( 11 ) NOT NULL default 0 ,
2014-03-14 09:33:13 +01:00
` weight ` float ( 8 , 3 ) NOT NULL DEFAULT 0 ,
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
PRIMARY KEY ( ` id_gs ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-04-19 20:50:07 +02:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
-- Table `treport`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` treport ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
` id_report ` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT ,
` id_user ` varchar ( 100 ) NOT NULL default ' ' ,
` name ` varchar ( 150 ) NOT NULL default ' ' ,
` description ` TEXT NOT NULL ,
` private ` tinyint ( 1 ) UNSIGNED NOT NULL default 0 ,
` id_group ` mediumint ( 8 ) unsigned NULL default NULL ,
` custom_logo ` varchar ( 200 ) default NULL ,
` header ` MEDIUMTEXT ,
` first_page ` MEDIUMTEXT ,
` footer ` MEDIUMTEXT ,
` custom_font ` varchar ( 200 ) default NULL ,
` id_template ` INTEGER UNSIGNED DEFAULT 0 ,
` id_group_edit ` mediumint ( 8 ) unsigned NULL DEFAULT 0 ,
2012-09-07 14:01:23 +02:00
` metaconsole ` tinyint ( 1 ) DEFAULT 0 ,
2014-04-07 12:34:16 +02:00
` non_interactive ` tinyint ( 1 ) UNSIGNED NOT NULL default 0 ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
include/functions_reports.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/reporting_xml.php,
operation/reporting/reporting_viewer.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: now the reports
can set the group can edit or private edition.
* include/functions_users.php: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6889 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 15:12:53 +02:00
PRIMARY KEY ( ` id_report ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-04-19 20:50:07 +02:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-07-27 20:11:42 +02:00
-- Table `treport_content`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` treport_content ` (
2010-07-27 20:11:42 +02:00
` id_rc ` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT ,
` id_report ` INTEGER UNSIGNED NOT NULL default 0 ,
` id_gs ` INTEGER UNSIGNED NULL default NULL ,
` id_agent_module ` bigint ( 14 ) unsigned NULL default NULL ,
` type ` varchar ( 30 ) default ' simple_graph ' ,
` period ` int ( 11 ) NOT NULL default 0 ,
` order ` int ( 11 ) NOT NULL default 0 ,
2014-04-10 12:19:02 +02:00
` name ` varchar ( 150 ) NULL ,
2010-07-27 20:11:42 +02:00
` description ` mediumtext ,
` id_agent ` int ( 10 ) unsigned NOT NULL default 0 ,
2012-04-30 14:21:38 +02:00
` text ` TEXT ,
` external_source ` Text ,
2010-07-27 20:11:42 +02:00
` treport_custom_sql_id ` INTEGER UNSIGNED default 0 ,
2012-04-30 14:21:38 +02:00
` header_definition ` TinyText ,
` column_separator ` TinyText ,
` line_separator ` TinyText ,
2010-07-27 20:11:42 +02:00
` time_from ` time default ' 00:00:00 ' ,
` time_to ` time default ' 00:00:00 ' ,
` monday ` tinyint ( 1 ) default 1 ,
` tuesday ` tinyint ( 1 ) default 1 ,
` wednesday ` tinyint ( 1 ) default 1 ,
` thursday ` tinyint ( 1 ) default 1 ,
` friday ` tinyint ( 1 ) default 1 ,
` saturday ` tinyint ( 1 ) default 1 ,
` sunday ` tinyint ( 1 ) default 1 ,
2011-02-09 13:57:00 +01:00
` only_display_wrong ` tinyint ( 1 ) unsigned default 0 not null ,
2011-03-21 18:20:18 +01:00
` top_n ` INT NOT NULL default 0 ,
` top_n_value ` INT NOT NULL default 10 ,
` exception_condition ` INT NOT NULL default 0 ,
` exception_condition_value ` DOUBLE ( 18 , 6 ) NOT NULL default 0 ,
` show_resume ` INT NOT NULL default 0 ,
` order_uptodown ` INT NOT NULL default 0 ,
` show_graph ` INT NOT NULL default 0 ,
` group_by_agent ` INT NOT NULL default 0 ,
2012-04-30 14:21:38 +02:00
` style ` TEXT NOT NULL ,
2011-04-06 17:42:05 +02:00
` id_group ` INT ( 10 ) unsigned NOT NULL DEFAULT 0 ,
` id_module_group ` INT ( 10 ) unsigned NOT NULL DEFAULT 0 ,
2012-04-30 14:21:38 +02:00
` server_name ` text ,
2010-07-27 20:11:42 +02:00
PRIMARY KEY ( ` id_rc ` ) ,
FOREIGN KEY ( ` id_report ` ) REFERENCES treport ( ` id_report ` )
ON UPDATE CASCADE ON DELETE CASCADE
2008-06-17 Esteban Sanchez <estebans@artica.es>
* ajax.php: Added to repository. AJAX interface for Pandora. A new
time is coming...
* pandoradb.sql: Added id_group to treport. A report is now assigned
to a group of agents. Changes in treport_content to add an order
field, drop sla fields and use an enum for the type. NOTE: This will
break all your current defined reports, update under your
responsabillity. Added table treport_content_sla_combined to define
SLAs in the SLA types reports.
* godmode/reporting/graph_builder.php: Use Pandora functions. Adde
javascript code to display the module icon when changing from the
dropdown menu.
* godmode/reporting/reporting_builder.php: Almost complet rewritten to
use Pandora HTML functions. Style correction.
* include/functions.php: Added new report types. Style correction.
* include/functions_db.php: Use Pandora database functions to get
simple values. Added functions get_agents_in_group(),
get_modules_in_agent(), get_simple_alerts_in_agent(),
get_combined_alerts_in_agent(), get_alerts_in_agent(),
get_monitor_downs_in_period(),
get_monitor_last_down_timestamp_in_period(),
get_alert_fires_in_period(),
get_alert_last_fire_timestamp_in_period(). Deleted debug output and
fixed calling to an inexistent function in
return_moduledata_sum_value().
* include/functions_html.php: Tab style correction. Thanks to Ramon
for the advice. Fixed some errors on print_table that was causing not
to work fine if rowclass or colspan was defined.
* include/functions_reporting.php: Adde date support to
return_module_SLA(), event_reporting(). Added alert_reporting(),
monitor_health_reporting(), general_group_reporting() and
agents_detailed_reporting() to implement new report types. Style
correction.
* include/javascript/pandora.js: Added html_entity_decode() function
to decode some AJAX results.
* javascript/jquery.js: Added to repository. jQuery version 1.2.4a
* include/javascript/jquery.timeentry.js: jQuery plugin to manage time
inputs.
* include/javascript/jquery.ui.datepicker.js: jQuery plugin to manage
date inputs in a dropdown calendar.
* include/languages/date_*.js, include/languages/time_*.js: Added to
repository. Translation of date and time strings for the new calendar
javascript support.
* include/languages/language_en.php: Added new strings relatives to
reports.
* include/languages/language_de.php,
include/languages/language_fr.php, include/languages/language_gl.php,
include/languages/language_pt_br.php: Fixed a variable name.
* godmode/groups/group_list.php: Avoid the use of an extra indentation
by returning if no success on comprueba_login().
* include/styles/pandora.css: Add some classes. Tab style correction.
* operation/agentes/ver_agente.php: Added AJAX support to agent
operations.
* operation/reporting/graph_viewer.php: Period dropdown selection
improved and printed with Pandora functions.
* operation/reporting/reporting_viewer.php: Massive rewritten.
Implemented date and time support, added new report types, use Pandora
functions...
* reporting/fgraph.php: Documentation fix. Added a new graphic to show
monitors health.
* godmode/agentes/agent_manager.php,
operation/reporting/custom_reporting.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@869 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-06-17 16:30:44 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
-- Table `treport_content_sla_combined`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` treport_content_sla_combined ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id ` INTEGER UNSIGNED NOT NULL auto_increment ,
` id_report_content ` INTEGER UNSIGNED NOT NULL ,
` id_agent_module ` int ( 10 ) unsigned NOT NULL ,
` sla_max ` double ( 18 , 2 ) NOT NULL default 0 ,
` sla_min ` double ( 18 , 2 ) NOT NULL default 0 ,
` sla_limit ` double ( 18 , 2 ) NOT NULL default 0 ,
` server_name ` text ,
PRIMARY KEY ( ` id ` ) ,
FOREIGN KEY ( ` id_report_content ` ) REFERENCES treport_content ( ` id_rc ` )
ON UPDATE CASCADE ON DELETE CASCADE
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-04-19 20:50:07 +02:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
-- Table `treport_content_item`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2011-03-23 13:57:26 +01:00
CREATE TABLE IF NOT EXISTS ` treport_content_item ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id ` INTEGER UNSIGNED NOT NULL auto_increment ,
` id_report_content ` INTEGER UNSIGNED NOT NULL ,
` id_agent_module ` int ( 10 ) unsigned NOT NULL ,
` server_name ` text ,
` operation ` text ,
PRIMARY KEY ( ` id ` ) ,
FOREIGN KEY ( ` id_report_content ` ) REFERENCES treport_content ( ` id_rc ` )
ON UPDATE CASCADE ON DELETE CASCADE
2011-03-23 13:57:26 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
-- Table `treport_custom_sql`
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2010-04-22 Miguel de Dios <miguel.dedios@artica.es>
* include/ajax/reporting.ajax.php: added ajax respond to delete_sla_item and
add_sla actions.
* include/functions.php: added in the function "get_report_types" new types
of items/contents for reporting.
* pandoradb.sql: added columns custom_logo, header, first_page, footer,
custom_font into the table treport. And in the table treport_content have
new columns text, external_source, treport_custom_sql_id, header_definition,
row_separator, line_separator. Added new table treport_custom_sql.
* extras/pandoradb_migrate_v3.0_to_v3.1.sql: added changes for DB that it
same to pandoradb.sql.
* images/sort_none.png, images/sort_down.png, images/sort_up.png: added the
images for order list items for reports.
* godmode/reporting/reporting_builder.list_items.php,
godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php: made new forms to
manage the reporting, now Pandora have tabs and list of items. In the list
of items, you can order manually or automatically the items.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2595 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-04-22 21:01:47 +02:00
CREATE TABLE IF NOT EXISTS ` treport_custom_sql ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id ` INTEGER UNSIGNED NOT NULL auto_increment ,
` name ` varchar ( 150 ) NOT NULL default ' ' ,
` sql ` TEXT ,
PRIMARY KEY ( ` id ` )
2010-04-22 Miguel de Dios <miguel.dedios@artica.es>
* include/ajax/reporting.ajax.php: added ajax respond to delete_sla_item and
add_sla actions.
* include/functions.php: added in the function "get_report_types" new types
of items/contents for reporting.
* pandoradb.sql: added columns custom_logo, header, first_page, footer,
custom_font into the table treport. And in the table treport_content have
new columns text, external_source, treport_custom_sql_id, header_definition,
row_separator, line_separator. Added new table treport_custom_sql.
* extras/pandoradb_migrate_v3.0_to_v3.1.sql: added changes for DB that it
same to pandoradb.sql.
* images/sort_none.png, images/sort_down.png, images/sort_up.png: added the
images for order list items for reports.
* godmode/reporting/reporting_builder.list_items.php,
godmode/reporting/reporting_builder.main.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php: made new forms to
manage the reporting, now Pandora have tabs and list of items. In the list
of items, you can order manually or automatically the items.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2595 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-04-22 21:01:47 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
-- Table `tlayout`
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tlayout ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id ` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT ,
` name ` varchar ( 50 ) NOT NULL ,
` id_group ` INTEGER UNSIGNED NOT NULL ,
` background ` varchar ( 200 ) NOT NULL ,
` height ` INTEGER UNSIGNED NOT NULL default 0 ,
` width ` INTEGER UNSIGNED NOT NULL default 0 ,
PRIMARY KEY ( ` id ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-05-20 19:12:31 +02:00
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- Table `tlayout_data`
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tlayout_data ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id ` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT ,
` id_layout ` INTEGER UNSIGNED NOT NULL default 0 ,
` pos_x ` INTEGER UNSIGNED NOT NULL default 0 ,
` pos_y ` INTEGER UNSIGNED NOT NULL default 0 ,
` height ` INTEGER UNSIGNED NOT NULL default 0 ,
` width ` INTEGER UNSIGNED NOT NULL default 0 ,
2014-05-10 18:02:20 +02:00
` label ` TEXT ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` image ` varchar ( 200 ) DEFAULT " " ,
` type ` tinyint ( 1 ) UNSIGNED NOT NULL default 0 ,
` period ` INTEGER UNSIGNED NOT NULL default 3600 ,
` id_agente_modulo ` mediumint ( 8 ) unsigned NOT NULL default ' 0 ' ,
` id_agent ` int ( 10 ) unsigned NOT NULL default 0 ,
` id_layout_linked ` INTEGER unsigned NOT NULL default ' 0 ' ,
` parent_item ` INTEGER UNSIGNED NOT NULL default 0 ,
2012-08-21 10:52:44 +02:00
` enable_link ` tinyint ( 1 ) UNSIGNED NOT NULL default 1 ,
2012-12-11 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql: in the table
"tlayout_data" added the column "id_metaconsole" for to show
visualmaps in the metaconsole.
* operation/visual_console/render_view.php,
include/functions_visual_map.php, operation/agentes/ver_agente.php,
godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.data.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/map_builder.php,
include/ajax/visual_console_builder.ajax.php,
include/ajax/agent.php, include/functions_visual_map_editor.php,
* operation/agentes/datos_agente.php,
include/functions_netflow.php: cleaned source code style.
* include/functions_ui.php: in function
"ui_require_javascript_file_enterprise" fixed when need a
enterprise javascript instead metaconsole enterprise path.
* include/javascript/pandora.js: fixed the function
"agent_changed_by_multiple_agents" that needs in the metaconsole.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7258 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-12-11 16:01:45 +01:00
` id_metaconsole ` int ( 10 ) NOT NULL default 0 ,
2014-03-20 Miguel de Dios <miguel.dedios@artica.es>
* images/group_green.disabled.png, images/group_green.png,
extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
godmode/agentes/configurar_agente.php, include/styles/pandora.css,
include/functions_networkmap.php, include/functions_agents.php,
include/functions_visual_map_editor.php,
include/functions_modules.php, include/functions_groups.php,
include/constants.php, include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql: added the feature to
show the item for groups in visualmap.
Incident: #671
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9621 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-03-20 17:43:42 +01:00
` id_group ` INTEGER UNSIGNED NOT NULL default 0 ,
2014-05-27 Miguel de Dios <miguel.dedios@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
include/functions_custom_graphs.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_graph.php, include/functions_visual_map.php,
include/functions_visual_map_editor.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
operation/reporting/graph_viewer.php, pandoradb_data.sql: added the
custom graphs into the visualmaps.
Incident: #367
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10018 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-05-27 14:59:56 +02:00
` id_custom_graph ` INTEGER UNSIGNED NOT NULL default 0 ,
2014-11-21 13:28:11 +01:00
` border_width ` INTEGER UNSIGNED NOT NULL default 0 ,
` border_color ` varchar ( 200 ) DEFAULT " " ,
` fill_color ` varchar ( 200 ) DEFAULT " " ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
PRIMARY KEY ( ` id ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2008-02-21 16:16:54 +01:00
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- Table `tplugin`
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- The fields "net_dst_opt", "net_port_opt", "user_opt" and
-- "pass_opt" are deprecated for the 5.1.
2011-02-07 12:34:44 +01:00
CREATE TABLE IF NOT EXISTS ` tplugin ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id ` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT ,
` name ` varchar ( 200 ) NOT NULL ,
` description ` mediumtext ,
` max_timeout ` int ( 4 ) UNSIGNED NOT NULL default 0 ,
2012-10-29 Ramon Novoa <rnovoa@artica.es>
* include/functions_reporting.php,
include/javascript/pandora_modules.js,
include/functions_network_components.php,
include/functions_api.php,
include/functions_netflow.php,
pandoradb.sql,
pandoradb.postgreSQL.sql,
pandoradb.oracle.sql,
extensions/resource_registration.php,
extensions/plugin_registration.php,
operation/menu.php,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
godmode/agentes/agent_template.php,
godmode/agentes/module_manager_editor_common.php,
godmode/agentes/configurar_agente.php,
godmode/agentes/module_manager_editor.php,
godmode/servers/plugin.php,
godmode/menu.php,
godmode/modules/manage_network_components_form.php,
godmode/modules/manage_network_templates.php,
godmode/modules/manage_network_components_form_wmi.php,
godmode/modules/manage_network_components.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php: Added support for
custom timeout and retries to remote modules.
* operation/netflow/nf_reporting.php,
operation/netflow/nf_view.php,
godmode/netflow/nf_report_item.php,
godmode/netflow/nf_report.php,
godmode/netflow/nf_report_form.php,
godmode/netflow/nf.php: Deleted from repository. Netflow reports are
now integrated into custom reports.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7103 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-10-29 11:13:49 +01:00
` max_retries ` int ( 4 ) UNSIGNED NOT NULL default 0 ,
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` execute ` varchar ( 250 ) NOT NULL ,
` net_dst_opt ` varchar ( 50 ) default ' ' ,
` net_port_opt ` varchar ( 50 ) default ' ' ,
` user_opt ` varchar ( 50 ) default ' ' ,
` pass_opt ` varchar ( 50 ) default ' ' ,
` plugin_type ` int ( 2 ) UNSIGNED NOT NULL default 0 ,
` macros ` text ,
` parameters ` text ,
PRIMARY KEY ( ` id ` )
2008-02-21 16:16:54 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- Table `tmodule`
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tmodule ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id_module ` int ( 11 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 100 ) NOT NULL default ' ' ,
PRIMARY KEY ( ` id_module ` )
2008-02-21 16:16:54 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- Table `tserver_export`
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tserver_export ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id ` int ( 10 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 100 ) NOT NULL default ' ' ,
` preffix ` varchar ( 100 ) NOT NULL default ' ' ,
` interval ` int ( 5 ) unsigned NOT NULL default ' 300 ' ,
` ip_server ` varchar ( 100 ) NOT NULL default ' ' ,
` connect_mode ` enum ( ' tentacle ' , ' ssh ' , ' local ' ) default ' local ' ,
` id_export_server ` int ( 10 ) unsigned default NULL ,
` user ` varchar ( 100 ) NOT NULL default ' ' ,
` pass ` varchar ( 100 ) NOT NULL default ' ' ,
` port ` int ( 4 ) unsigned default ' 0 ' ,
` directory ` varchar ( 100 ) NOT NULL default ' ' ,
` options ` varchar ( 100 ) NOT NULL default ' ' ,
` timezone_offset ` TINYINT ( 2 ) NULL DEFAULT ' 0 ' COMMENT ' Number of hours of diference with the server timezone ' ,
PRIMARY KEY ( ` id ` ) ,
INDEX id_export_server ( ` id_export_server ` )
2008-02-25 19:08:52 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
-- Table `tserver_export_data`
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2008-07-30 20:39:40 +02:00
-- id_export_server is real pandora fms export server process that manages this server
-- id is the "destination" server to export
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tserver_export_data ` (
2012-08-20 Miguel de Dios <miguel.dedios@artica.es>
* index.php, extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
general/login_page.php, general/logon_failed.php,
godmode/users/configure_user.php, include/api.php,
include/auth/mysql.php, pandoradb.sql, pandoradb.postgreSQL.sql,
pandoradb.oracle.sql: added the feature to set any user with
"not login" for only the user can work across the API.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-20 20:06:04 +02:00
` id ` int ( 20 ) unsigned NOT NULL auto_increment ,
` id_export_server ` int ( 10 ) unsigned default NULL ,
` agent_name ` varchar ( 100 ) NOT NULL default ' ' ,
` module_name ` varchar ( 100 ) NOT NULL default ' ' ,
` module_type ` varchar ( 100 ) NOT NULL default ' ' ,
` data ` varchar ( 255 ) default NULL ,
` timestamp ` datetime NOT NULL default ' 1970-01-01 00:00:00 ' ,
PRIMARY KEY ( ` id ` )
2008-03-26 17:47:39 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
-- Table `tplanned_downtime`
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tplanned_downtime ` (
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
` id ` MEDIUMINT ( 8 ) NOT NULL AUTO_INCREMENT ,
` name ` VARCHAR ( 100 ) NOT NULL ,
` description ` TEXT NOT NULL ,
` date_from ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` date_to ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` executed ` tinyint ( 1 ) UNSIGNED NOT NULL default 0 ,
` id_group ` mediumint ( 8 ) unsigned NULL default 0 ,
` only_alerts ` tinyint ( 1 ) UNSIGNED NOT NULL default 0 ,
` monday ` tinyint ( 1 ) default 0 ,
` tuesday ` tinyint ( 1 ) default 0 ,
` wednesday ` tinyint ( 1 ) default 0 ,
` thursday ` tinyint ( 1 ) default 0 ,
` friday ` tinyint ( 1 ) default 0 ,
` saturday ` tinyint ( 1 ) default 0 ,
` sunday ` tinyint ( 1 ) default 0 ,
` periodically_time_from ` time NULL default NULL ,
` periodically_time_to ` time NULL default NULL ,
` periodically_day_from ` int ( 100 ) unsigned default NULL ,
` periodically_day_to ` int ( 100 ) unsigned default NULL ,
` type_downtime ` varchar ( 100 ) NOT NULL default ' disabled_agents_alerts ' ,
` type_execution ` varchar ( 100 ) NOT NULL default ' once ' ,
` type_periodicity ` varchar ( 100 ) NOT NULL default ' weekly ' ,
2013-03-07 18:20:41 +01:00
` id_user ` varchar ( 100 ) NOT NULL default ' 0 ' ,
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
PRIMARY KEY ( ` id ` )
2008-07-30 20:19:58 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2008-07-25 20:37:32 +02:00
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
-- Table `tplanned_downtime_agents`
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tplanned_downtime_agents ` (
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
` id ` int ( 20 ) unsigned NOT NULL auto_increment ,
` id_agent ` mediumint ( 8 ) unsigned NOT NULL default ' 0 ' ,
` id_downtime ` mediumint ( 8 ) NOT NULL default ' 0 ' ,
` all_modules ` tinyint ( 1 ) default 1 ,
PRIMARY KEY ( ` id ` ) ,
FOREIGN KEY ( ` id_downtime ` ) REFERENCES tplanned_downtime ( ` id ` )
ON DELETE CASCADE
2008-07-25 20:37:32 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2009-01-20 11:37:04 +01:00
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
-- Table `tplanned_downtime_modules`
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
-- ---------------------------------------------------------------------
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
CREATE TABLE IF NOT EXISTS ` tplanned_downtime_modules ` (
` id ` int ( 20 ) unsigned NOT NULL auto_increment ,
` id_agent ` mediumint ( 8 ) unsigned NOT NULL default ' 0 ' ,
` id_agent_module ` int ( 10 ) NOT NULL ,
` id_downtime ` mediumint ( 8 ) NOT NULL default ' 0 ' ,
PRIMARY KEY ( ` id ` ) ,
FOREIGN KEY ( ` id_downtime ` ) REFERENCES tplanned_downtime ( ` id ` )
ON DELETE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-01-12 19:08:08 +01:00
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
-- GIS extension Tables
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-02-17 20:35:39 +01:00
-- Table `tgis_data_history`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-02-17 20:35:39 +01:00
CREATE TABLE IF NOT EXISTS ` tgis_data_history ` (
2012-08-29 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
include/db/mysql.php,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
godmode/agentes/planned_downtime.list.php,
godmode/agentes/planned_downtime.editor.php, godmode/menu.php,
include/ajax/planned_downtime.ajax.php: refactoriced the code for
planned downtime, now this have new feature such as set a downtime
with a periodicity each week, each month and set the agents and
the modules with Quiet state instead the old form (but the old still
is). And the page is more easy and quickly to set or config a
planned downtime.
* godmode/alerts/configure_alert_template.php,
include/javascript/pandora.js: cleaned source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6919 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-08-29 11:46:05 +02:00
` id_tgis_data ` INT NOT NULL AUTO_INCREMENT COMMENT ' key of the table ' ,
` longitude ` DOUBLE NOT NULL ,
` latitude ` DOUBLE NOT NULL ,
` altitude ` DOUBLE NULL ,
` start_timestamp ` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT ' timestamp on wich the agente started to be in this position ' ,
` end_timestamp ` TIMESTAMP NULL COMMENT ' timestamp on wich the agent was placed for last time on this position ' ,
` description ` TEXT NULL COMMENT ' description of the region correoponding to this placemnt ' ,
` manual_placement ` TINYINT ( 1 ) NOT NULL DEFAULT 0 COMMENT ' 0 to show that the position cames from the agent, 1 to show that the position was established manualy ' ,
` number_of_packages ` INT NOT NULL DEFAULT 1 COMMENT ' Number of data packages received with this position from the start_timestampa to the_end_timestamp ' ,
` tagente_id_agente ` INT ( 10 ) UNSIGNED NOT NULL COMMENT ' reference to the agent ' ,
PRIMARY KEY ( ` id_tgis_data ` ) ,
INDEX ` start_timestamp_index ` USING BTREE ( ` start_timestamp ` ASC ) ,
INDEX ` end_timestamp_index ` USING BTREE ( ` end_timestamp ` ASC ) )
2010-01-12 19:08:08 +01:00
ENGINE = InnoDB
2010-02-17 20:35:39 +01:00
COMMENT = ' Table to store historical GIS information of the agents ' ;
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-02-17 20:35:39 +01:00
-- Table `tgis_data_status`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-02-17 20:35:39 +01:00
CREATE TABLE IF NOT EXISTS ` tgis_data_status ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` tagente_id_agente ` INT ( 10 ) UNSIGNED NOT NULL COMMENT ' Reference to the agent ' ,
` current_longitude ` DOUBLE NOT NULL COMMENT ' Last received longitude ' ,
` current_latitude ` DOUBLE NOT NULL COMMENT ' Last received latitude ' ,
` current_altitude ` DOUBLE NULL COMMENT ' Last received altitude ' ,
` stored_longitude ` DOUBLE NOT NULL COMMENT ' Reference longitude to see if the agent has moved ' ,
` stored_latitude ` DOUBLE NOT NULL COMMENT ' Reference latitude to see if the agent has moved ' ,
` stored_altitude ` DOUBLE NULL COMMENT ' Reference altitude to see if the agent has moved ' ,
` number_of_packages ` INT NOT NULL DEFAULT 1 COMMENT ' Number of data packages received with this position since start_timestampa ' ,
` start_timestamp ` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT ' Timestamp on wich the agente started to be in this position ' ,
` manual_placement ` TINYINT ( 1 ) NOT NULL DEFAULT 0 COMMENT ' 0 to show that the position cames from the agent, 1 to show that the position was established manualy ' ,
` description ` TEXT NULL COMMENT ' description of the region correoponding to this placemnt ' ,
PRIMARY KEY ( ` tagente_id_agente ` ) ,
INDEX ` start_timestamp_index ` USING BTREE ( ` start_timestamp ` ASC ) ,
INDEX ` fk_tgisdata_tagente1 ` ( ` tagente_id_agente ` ASC ) ,
CONSTRAINT ` fk_tgisdata_tagente1 `
FOREIGN KEY ( ` tagente_id_agente ` )
REFERENCES ` tagente ` ( ` id_agente ` )
ON DELETE CASCADE
ON UPDATE NO ACTION )
2010-02-17 20:35:39 +01:00
ENGINE = InnoDB
COMMENT = ' Table to store last GIS information of the agents ' ;
2010-01-12 19:08:08 +01:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-01-13 18:32:52 +01:00
-- Table `tgis_map`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-01-12 19:08:08 +01:00
CREATE TABLE IF NOT EXISTS ` tgis_map ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_tgis_map ` INT NOT NULL AUTO_INCREMENT COMMENT ' table identifier ' ,
` map_name ` VARCHAR ( 63 ) NOT NULL COMMENT ' Name of the map ' ,
` initial_longitude ` DOUBLE NULL COMMENT " longitude of the center of the map when it\'s loaded " ,
` initial_latitude ` DOUBLE NULL COMMENT " latitude of the center of the map when it\'s loaded " ,
` initial_altitude ` DOUBLE NULL COMMENT " altitude of the center of the map when it\'s loaded " ,
` zoom_level ` TINYINT ( 2 ) NULL DEFAULT ' 1 ' COMMENT ' Zoom level to show when the map is loaded. ' ,
` map_background ` VARCHAR ( 127 ) NULL COMMENT ' path on the server to the background image of the map ' ,
` default_longitude ` DOUBLE NULL COMMENT ' default longitude for the agents placed on the map ' ,
` default_latitude ` DOUBLE NULL COMMENT ' default latitude for the agents placed on the map ' ,
` default_altitude ` DOUBLE NULL COMMENT ' default altitude for the agents placed on the map ' ,
` group_id ` INT ( 10 ) NOT NULL DEFAULT 0 COMMENT ' Group that owns the map ' ,
` default_map ` TINYINT ( 1 ) NULL DEFAULT 0 COMMENT ' 1 if this is the default map, 0 in other case ' ,
PRIMARY KEY ( ` id_tgis_map ` ) ,
INDEX ` map_name_index ` ( ` map_name ` ASC )
2010-01-22 15:18:23 +01:00
)
2010-01-12 19:08:08 +01:00
ENGINE = InnoDB
COMMENT = ' Table containing information about a gis map ' ;
2012-10-09 17:51:33 +02:00
-- ---------------------------------------------------------------------
2010-01-13 18:32:52 +01:00
-- Table `tgis_map_connection`
2012-10-09 17:51:33 +02:00
-- ---------------------------------------------------------------------
2010-01-13 18:32:52 +01:00
CREATE TABLE IF NOT EXISTS ` tgis_map_connection ` (
2012-10-09 17:51:33 +02:00
` id_tmap_connection ` INT NOT NULL AUTO_INCREMENT COMMENT ' table id ' ,
` conection_name ` VARCHAR ( 45 ) NULL COMMENT ' Name of the connection (name of the base layer) ' ,
` connection_type ` VARCHAR ( 45 ) NULL COMMENT ' Type of map server to connect ' ,
` conection_data ` TEXT NULL COMMENT ' connection information (this can probably change to fit better the possible connection parameters) ' ,
` num_zoom_levels ` TINYINT ( 2 ) NULL COMMENT ' Number of zoom levels available ' ,
` default_zoom_level ` TINYINT ( 2 ) NOT NULL DEFAULT 16 COMMENT ' Default Zoom Level for the connection ' ,
` default_longitude ` DOUBLE NULL COMMENT ' default longitude for the agents placed on the map ' ,
` default_latitude ` DOUBLE NULL COMMENT ' default latitude for the agents placed on the map ' ,
` default_altitude ` DOUBLE NULL COMMENT ' default altitude for the agents placed on the map ' ,
` initial_longitude ` DOUBLE NULL COMMENT " longitude of the center of the map when it\'s loaded " ,
` initial_latitude ` DOUBLE NULL COMMENT " latitude of the center of the map when it\'s loaded " ,
` initial_altitude ` DOUBLE NULL COMMENT " altitude of the center of the map when it\'s loaded " ,
` group_id ` INT ( 10 ) NOT NULL DEFAULT 0 COMMENT ' Group that owns the map ' ,
PRIMARY KEY ( ` id_tmap_connection ` ) )
2010-01-22 15:18:23 +01:00
ENGINE = InnoDB
COMMENT = ' Table to store the map connection information ' ;
-- -----------------------------------------------------
-- Table `tgis_map_has_tgis_map_connection`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tgis_map_has_tgis_map_connection ` (
2012-10-24 16:01:54 +02:00
` tgis_map_id_tgis_map ` INT NOT NULL COMMENT ' reference to tgis_map ' ,
` tgis_map_connection_id_tmap_connection ` INT NOT NULL COMMENT ' reference to tgis_map_connection ' ,
` modification_time ` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ' Last Modification Time of the Connection ' ,
` default_map_connection ` TINYINT ( 1 ) NULL DEFAULT FALSE COMMENT ' Flag to mark the default map connection of a map ' ,
PRIMARY KEY ( ` tgis_map_id_tgis_map ` , ` tgis_map_connection_id_tmap_connection ` ) ,
INDEX ` fk_tgis_map_has_tgis_map_connection_tgis_map1 ` ( ` tgis_map_id_tgis_map ` ASC ) ,
INDEX ` fk_tgis_map_has_tgis_map_connection_tgis_map_connection1 ` ( ` tgis_map_connection_id_tmap_connection ` ASC ) ,
CONSTRAINT ` fk_tgis_map_has_tgis_map_connection_tgis_map1 `
FOREIGN KEY ( ` tgis_map_id_tgis_map ` )
REFERENCES ` tgis_map ` ( ` id_tgis_map ` )
ON DELETE CASCADE
ON UPDATE NO ACTION ,
CONSTRAINT ` fk_tgis_map_has_tgis_map_connection_tgis_map_connection1 `
FOREIGN KEY ( ` tgis_map_connection_id_tmap_connection ` )
REFERENCES ` tgis_map_connection ` ( ` id_tmap_connection ` )
ON DELETE CASCADE
ON UPDATE NO ACTION )
2010-01-13 18:32:52 +01:00
ENGINE = InnoDB
2010-01-22 15:18:23 +01:00
COMMENT = ' Table to asociate a connection to a gis map ' ;
2010-01-13 18:32:52 +01:00
-- -----------------------------------------------------
-- Table `tgis_map_layer`
-- -----------------------------------------------------
2010-01-12 19:08:08 +01:00
CREATE TABLE IF NOT EXISTS ` tgis_map_layer ` (
2012-10-24 16:01:54 +02:00
` id_tmap_layer ` INT NOT NULL AUTO_INCREMENT COMMENT ' table id ' ,
` layer_name ` VARCHAR ( 45 ) NOT NULL COMMENT ' Name of the layer ' ,
` view_layer ` TINYINT ( 1 ) NOT NULL DEFAULT TRUE COMMENT ' True if the layer must be shown ' ,
` layer_stack_order ` TINYINT ( 3 ) NULL DEFAULT 0 COMMENT ' Number of order of the layer in the layer stack, bigger means upper on the stack.\n ' ,
` tgis_map_id_tgis_map ` INT NOT NULL COMMENT ' reference to the map containing the layer ' ,
` tgrupo_id_grupo ` MEDIUMINT ( 4 ) NOT NULL COMMENT ' reference to the group shown in the layer ' ,
PRIMARY KEY ( ` id_tmap_layer ` ) ,
INDEX ` fk_tmap_layer_tgis_map1 ` ( ` tgis_map_id_tgis_map ` ASC ) ,
CONSTRAINT ` fk_tmap_layer_tgis_map1 `
FOREIGN KEY ( ` tgis_map_id_tgis_map ` )
REFERENCES ` tgis_map ` ( ` id_tgis_map ` )
ON DELETE CASCADE
ON UPDATE NO ACTION )
2010-01-12 19:08:08 +01:00
ENGINE = InnoDB
COMMENT = ' Table containing information about the map layers ' ;
2010-01-22 15:18:23 +01:00
-- -----------------------------------------------------
-- Table `tgis_map_layer_has_tagente`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tgis_map_layer_has_tagente ` (
2012-10-24 16:01:54 +02:00
` tgis_map_layer_id_tmap_layer ` INT NOT NULL ,
` tagente_id_agente ` INT ( 10 ) UNSIGNED NOT NULL ,
PRIMARY KEY ( ` tgis_map_layer_id_tmap_layer ` , ` tagente_id_agente ` ) ,
INDEX ` fk_tgis_map_layer_has_tagente_tgis_map_layer1 ` ( ` tgis_map_layer_id_tmap_layer ` ASC ) ,
INDEX ` fk_tgis_map_layer_has_tagente_tagente1 ` ( ` tagente_id_agente ` ASC ) ,
CONSTRAINT ` fk_tgis_map_layer_has_tagente_tgis_map_layer1 `
FOREIGN KEY ( ` tgis_map_layer_id_tmap_layer ` )
REFERENCES ` tgis_map_layer ` ( ` id_tmap_layer ` )
ON DELETE CASCADE
ON UPDATE NO ACTION ,
CONSTRAINT ` fk_tgis_map_layer_has_tagente_tagente1 `
FOREIGN KEY ( ` tagente_id_agente ` )
REFERENCES ` tagente ` ( ` id_agente ` )
ON DELETE CASCADE
ON UPDATE NO ACTION )
2010-01-22 15:18:23 +01:00
ENGINE = InnoDB
COMMENT = ' Table to define wich agents are shown in a layer ' ;
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-02-10 18:10:10 +01:00
-- Table `tgroup_stat`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-02-10 18:10:10 +01:00
CREATE TABLE IF NOT EXISTS ` tgroup_stat ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_group ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` modules ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` normal ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` critical ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` warning ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` unknown ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` non - init ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` alerts ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` alerts_fired ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` agents ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` agents_unknown ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` utimestamp ` int ( 20 ) unsigned NOT NULL default 0 ,
PRIMARY KEY ( ` id_group ` )
2010-02-10 18:10:10 +01:00
) ENGINE = InnoDB
COMMENT = ' Table to store global system stats per group '
DEFAULT CHARSET = utf8 ;
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-07-30 11:03:23 +02:00
-- Table `tnetwork_map`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-07-30 11:03:23 +02:00
CREATE TABLE IF NOT EXISTS ` tnetwork_map ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_networkmap ` INT UNSIGNED NOT NULL AUTO_INCREMENT ,
` id_user ` VARCHAR ( 60 ) NOT NULL ,
` name ` VARCHAR ( 100 ) NOT NULL ,
` type ` VARCHAR ( 20 ) NOT NULL ,
` layout ` VARCHAR ( 20 ) NOT NULL ,
` nooverlap ` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT 0 ,
` simple ` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT 0 ,
` regenerate ` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT 1 ,
` font_size ` INT UNSIGNED NOT NULL DEFAULT 12 ,
` id_group ` INT NOT NULL DEFAULT 0 ,
` id_module_group ` INT NOT NULL DEFAULT 0 ,
` id_policy ` INT NOT NULL DEFAULT 0 ,
` depth ` VARCHAR ( 20 ) NOT NULL ,
` only_modules_with_alerts ` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT 0 ,
` hide_policy_modules ` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT 0 ,
` zoom ` FLOAT UNSIGNED NOT NULL DEFAULT 1 ,
` distance_nodes ` FLOAT UNSIGNED NOT NULL DEFAULT 2 . 5 ,
` center ` INT UNSIGNED NOT NULL DEFAULT 0 ,
` contracted_nodes ` TEXT ,
` show_snmp_modules ` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT 0 ,
` text_filter ` VARCHAR ( 100 ) NOT NULL DEFAULT " " ,
` dont_show_subgroups ` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT 0 ,
2012-10-09 17:51:33 +02:00
` pandoras_children ` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT 0 ,
2012-10-24 16:01:54 +02:00
` show_groups ` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT 0 ,
` show_modules ` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT 0 ,
2012-11-13 17:06:21 +01:00
` id_agent ` INT NOT NULL DEFAULT 0 ,
` server_name ` VARCHAR ( 100 ) NOT NULL ,
` show_modulegroup ` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT 0 ,
2014-03-19 17:43:08 +01:00
` l2_network ` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT 0 ,
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
PRIMARY KEY ( ` id_networkmap ` )
2010-07-30 11:03:23 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-08-12 14:23:25 +02:00
-- Table `tsnmp_filter`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-08-25 14:04:42 +02:00
CREATE TABLE IF NOT EXISTS ` tsnmp_filter ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_snmp_filter ` int ( 10 ) unsigned NOT NULL auto_increment ,
` description ` varchar ( 255 ) default ' ' ,
` filter ` varchar ( 255 ) default ' ' ,
PRIMARY KEY ( ` id_snmp_filter ` )
2010-08-12 14:23:25 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-10 18:10:10 +01:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-08-25 14:04:42 +02:00
-- Table `tagent_custom_fields`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-08-25 14:04:42 +02:00
CREATE TABLE IF NOT EXISTS ` tagent_custom_fields ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_field ` int ( 10 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 45 ) NOT NULL default ' ' ,
` display_on_front ` tinyint ( 1 ) NOT NULL default 0 ,
PRIMARY KEY ( ` id_field ` )
2010-08-25 14:04:42 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-08-25 14:04:42 +02:00
-- Table `tagent_custom_data`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2010-08-25 14:04:42 +02:00
CREATE TABLE IF NOT EXISTS ` tagent_custom_data ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_field ` int ( 10 ) unsigned NOT NULL ,
` id_agent ` int ( 10 ) unsigned NOT NULL ,
` description ` text ,
FOREIGN KEY ( ` id_field ` ) REFERENCES tagent_custom_fields ( ` id_field ` )
ON UPDATE CASCADE ON DELETE CASCADE ,
FOREIGN KEY ( ` id_agent ` ) REFERENCES tagente ( ` id_agente ` )
ON UPDATE CASCADE ON DELETE CASCADE ,
PRIMARY KEY ( ` id_field ` , ` id_agent ` )
2010-08-25 14:04:42 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2011-05-26 12:51:17 +02:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2011-05-26 12:51:17 +02:00
-- Table `ttag`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2011-05-26 12:51:17 +02:00
CREATE TABLE IF NOT EXISTS ` ttag ` (
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
` id_tag ` integer ( 10 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 100 ) NOT NULL default ' ' ,
` description ` text NOT NULL ,
` url ` mediumtext NOT NULL ,
2013-04-24 15:51:57 +02:00
` email ` text NULL ,
2013-09-03 10:50:25 +02:00
` phone ` text NULL ,
2012-09-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: added the fields
"text_filter" and "dont_show_subgroups" for to new filters to
generate the networkmap.
* operation/agentes/networkmap.topology.php,
operation/agentes/networkmap.groups.php,
include/functions_networkmap.php, include/functions_servers.php:
added the new filters for free text for agents and hidden the
subgroups of any group in the group networkmap.
* extensions/resource_registration.php,
operation/agentes/networkmap.php, general/header.php,
godmode/netflow/nf_report_form.php,
godmode/agentes/module_manager.php, include/functions_groups.php,
include/auth/ldap.php, operation/agentes/estado_ultimopaquete.php,
include/functions.php, include/functions_db.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6995 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-09-24 13:59:05 +02:00
PRIMARY KEY ( ` id_tag ` )
2011-05-26 12:51:17 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
-- -----------------------------------------------------
-- Table `ttag_module`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` ttag_module ` (
2012-10-24 16:01:54 +02:00
` id_tag ` int ( 10 ) NOT NULL ,
` id_agente_modulo ` int ( 10 ) NOT NULL DEFAULT 0 ,
PRIMARY KEY ( id_tag , id_agente_modulo ) ,
KEY ` idx_id_agente_modulo ` ( ` id_agente_modulo ` )
2011-05-26 12:51:17 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-11-13 17:06:21 +01:00
-- ---------------------------------------------------------------------
2011-05-26 12:51:17 +02:00
-- Table `ttag_policy_module`
2012-11-13 17:06:21 +01:00
-- ---------------------------------------------------------------------
2011-05-26 12:51:17 +02:00
CREATE TABLE IF NOT EXISTS ` ttag_policy_module ` (
2012-10-24 16:01:54 +02:00
` id_tag ` int ( 10 ) NOT NULL ,
` id_policy_module ` int ( 10 ) NOT NULL DEFAULT 0 ,
PRIMARY KEY ( id_tag , id_policy_module ) ,
KEY ` idx_id_policy_module ` ( ` id_policy_module ` )
2011-05-26 12:51:17 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-11-13 17:06:21 +01:00
-- ---------------------------------------------------------------------
2011-12-21 16:28:01 +01:00
-- Table `tnetflow_filter`
2012-11-13 17:06:21 +01:00
-- ---------------------------------------------------------------------
2011-12-21 16:28:01 +01:00
CREATE TABLE IF NOT EXISTS ` tnetflow_filter ` (
2012-10-24 16:01:54 +02:00
` id_sg ` int ( 10 ) unsigned NOT NULL auto_increment ,
` id_name ` varchar ( 600 ) NOT NULL default ' 0 ' ,
` id_group ` int ( 10 ) ,
` ip_dst ` TEXT NOT NULL ,
` ip_src ` TEXT NOT NULL ,
` dst_port ` TEXT NOT NULL ,
` src_port ` TEXT NOT NULL ,
` advanced_filter ` TEXT NOT NULL ,
` filter_args ` TEXT NOT NULL ,
` aggregate ` varchar ( 60 ) ,
` output ` varchar ( 60 ) ,
PRIMARY KEY ( ` id_sg ` )
2011-12-21 16:28:01 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-11-13 17:06:21 +01:00
-- ---------------------------------------------------------------------
2011-12-21 16:28:01 +01:00
-- Table `tnetflow_report`
2012-11-13 17:06:21 +01:00
-- ---------------------------------------------------------------------
2011-12-21 16:28:01 +01:00
CREATE TABLE IF NOT EXISTS ` tnetflow_report ` (
2012-10-24 16:01:54 +02:00
` id_report ` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT ,
` id_name ` varchar ( 150 ) NOT NULL default ' ' ,
` description ` TEXT NOT NULL ,
` id_group ` int ( 10 ) ,
` server_name ` TEXT NOT NULL ,
PRIMARY KEY ( ` id_report ` )
2011-12-21 16:28:01 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-10-09 17:51:33 +02:00
-- ---------------------------------------------------------------------
2011-12-21 16:28:01 +01:00
-- Table `tnetflow_report_content`
2012-10-09 17:51:33 +02:00
-- ---------------------------------------------------------------------
2011-12-21 16:28:01 +01:00
CREATE TABLE IF NOT EXISTS ` tnetflow_report_content ` (
2012-10-24 16:01:54 +02:00
` id_rc ` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT ,
2011-12-21 16:28:01 +01:00
` id_report ` INTEGER UNSIGNED NOT NULL default 0 ,
2012-10-23 Ramon Novoa <rnovoa@artica.es>
* include/functions_cron.php: Added to repository. Cron related
functions.
* include/functions_html.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
godmode/agentes/module_manager_editor_common.php,
godmode/agentes/configurar_agente.php,
godmode/agentes/module_manager_editor.php: Added support for remote
cron modules.
* godmode/netflow/nf_item_list.php,
godmode/netflow/nf_report_item.php,
operation/netflow/nf_view.php,
include/functions_netflow.php: Added a description to report items.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7083 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-10-23 12:45:25 +02:00
` id_filter ` INTEGER UNSIGNED NOT NULL default 0 ,
` description ` TEXT NOT NULL ,
2011-12-21 16:28:01 +01:00
` date ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` period ` int ( 11 ) NOT NULL default 0 ,
` max ` int ( 11 ) NOT NULL default 0 ,
` show_graph ` varchar ( 60 ) ,
2012-01-13 12:58:59 +01:00
` order ` int ( 11 ) NOT NULL default 0 ,
2011-12-21 16:28:01 +01:00
PRIMARY KEY ( ` id_rc ` ) ,
FOREIGN KEY ( ` id_report ` ) REFERENCES tnetflow_report ( ` id_report ` )
2012-01-09 11:04:31 +01:00
ON DELETE CASCADE ,
FOREIGN KEY ( ` id_filter ` ) REFERENCES tnetflow_filter ( ` id_sg ` )
ON DELETE CASCADE
2011-12-21 16:28:01 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-02-08 14:04:18 +01:00
2012-10-09 17:51:33 +02:00
-- ---------------------------------------------------------------------
2012-02-08 14:04:18 +01:00
-- Table `tevent_filter`
2012-10-09 17:51:33 +02:00
-- ---------------------------------------------------------------------
2012-02-08 14:04:18 +01:00
CREATE TABLE IF NOT EXISTS ` tevent_filter ` (
2012-10-24 16:01:54 +02:00
` id_filter ` int ( 10 ) unsigned NOT NULL auto_increment ,
` id_group_filter ` int ( 10 ) NOT NULL default 0 ,
` id_name ` varchar ( 600 ) NOT NULL ,
` id_group ` int ( 10 ) NOT NULL default 0 ,
` event_type ` text NOT NULL ,
` severity ` int ( 10 ) NOT NULL default - 1 ,
` status ` int ( 10 ) NOT NULL default - 1 ,
` search ` TEXT ,
` text_agent ` TEXT ,
` pagination ` int ( 10 ) NOT NULL default 25 ,
` event_view_hr ` int ( 10 ) NOT NULL default 8 ,
` id_user_ack ` TEXT ,
` group_rep ` int ( 10 ) NOT NULL default 0 ,
2012-11-07 18:49:31 +01:00
` tag_with ` text NOT NULL ,
` tag_without ` text NOT NULL ,
2012-10-24 16:01:54 +02:00
` filter_only_alert ` int ( 10 ) NOT NULL default - 1 ,
PRIMARY KEY ( ` id_filter ` )
2012-02-08 14:04:18 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-02-20 17:15:34 +01:00
2012-11-07 18:49:31 +01:00
-- ---------------------------------------------------------------------
2012-05-30 14:07:26 +02:00
-- Table `tpassword_history`
2012-11-07 18:49:31 +01:00
-- ---------------------------------------------------------------------
2012-05-30 14:07:26 +02:00
CREATE TABLE IF NOT EXISTS ` tpassword_history ` (
2012-10-24 16:01:54 +02:00
` id_pass ` int ( 10 ) unsigned NOT NULL auto_increment ,
` id_user ` varchar ( 60 ) NOT NULL ,
` password ` varchar ( 45 ) default NULL ,
` date_begin ` DATETIME NOT NULL DEFAULT 0 ,
` date_end ` DATETIME NOT NULL DEFAULT 0 ,
PRIMARY KEY ( ` id_pass ` )
2012-05-30 14:07:26 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-10-09 18:08:18 +02:00
-- ---------------------------------------------------------------------
-- Table `tevent_response`
-- ---------------------------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tevent_response ` (
` id ` int ( 10 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 600 ) NOT NULL default ' ' ,
` description ` TEXT NOT NULL ,
` target ` TEXT NOT NULL ,
` type ` varchar ( 60 ) NOT NULL ,
` id_group ` MEDIUMINT ( 4 ) NOT NULL default 0 ,
` modal_width ` INTEGER NOT NULL DEFAULT 0 ,
` modal_height ` INTEGER NOT NULL DEFAULT 0 ,
` new_window ` TINYINT ( 4 ) NOT NULL DEFAULT 0 ,
` params ` TEXT NOT NULL ,
PRIMARY KEY ( ` id ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-12-05 13:55:44 +01:00
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-12-05 13:55:44 +01:00
-- Table `tcategory`
2012-12-09 23:31:29 +01:00
-- ----------------------------------------------------------------------
2012-12-05 13:55:44 +01:00
CREATE TABLE IF NOT EXISTS ` tcategory ` (
` id ` int ( 10 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 600 ) NOT NULL default ' ' ,
PRIMARY KEY ( ` id ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-12-10 16:52:51 +01:00
-- ---------------------------------------------------------------------
-- Table `tupdate_settings`
-- ---------------------------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tupdate_settings ` (
` key ` varchar ( 255 ) default ' ' ,
` value ` varchar ( 255 ) default ' ' , PRIMARY KEY ( ` key ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
-- ---------------------------------------------------------------------
-- Table `tupdate_package`
-- ---------------------------------------------------------------------
CREATE TABLE ` tupdate_package ` (
id int ( 11 ) unsigned NOT NULL auto_increment ,
timestamp datetime NOT NULL ,
description varchar ( 255 ) default ' ' , PRIMARY KEY ( ` id ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
-- ---------------------------------------------------------------------
-- Table `tupdate`
-- ---------------------------------------------------------------------
CREATE TABLE ` tupdate ` (
id int ( 11 ) unsigned NOT NULL auto_increment ,
type enum ( ' code ' , ' db_data ' , ' db_schema ' , ' binary ' ) ,
id_update_package int ( 11 ) unsigned NOT NULL default 0 ,
filename varchar ( 250 ) default ' ' ,
checksum varchar ( 250 ) default ' ' ,
previous_checksum varchar ( 250 ) default ' ' ,
svn_version int ( 4 ) unsigned NOT NULL default 0 ,
2014-05-10 18:02:20 +02:00
data LONGTEXT ,
data_rollback LONGTEXT ,
description TEXT ,
2012-12-10 16:52:51 +01:00
db_table_name varchar ( 140 ) default ' ' ,
db_field_name varchar ( 140 ) default ' ' ,
db_field_value varchar ( 1024 ) default ' ' , PRIMARY KEY ( ` id ` ) ,
FOREIGN KEY ( ` id_update_package ` ) REFERENCES tupdate_package ( ` id ` ) ON UPDATE CASCADE ON DELETE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
-- ---------------------------------------------------------------------
-- Table `tupdate_journal`
-- ---------------------------------------------------------------------
CREATE TABLE ` tupdate_journal ` (
id int ( 11 ) unsigned NOT NULL auto_increment ,
id_update int ( 11 ) unsigned NOT NULL default 0 , PRIMARY KEY ( ` id ` ) ,
FOREIGN KEY ( ` id_update ` ) REFERENCES tupdate ( ` id ` ) ON UPDATE CASCADE ON DELETE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2014-03-31 17:00:16 +02:00
-- ---------------------------------------------------------------------
-- Table `talert_snmp_action`
-- ---------------------------------------------------------------------
CREATE TABLE IF NOT EXISTS ` talert_snmp_action ` (
` id ` int ( 10 ) unsigned NOT NULL auto_increment ,
` id_alert_snmp ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` alert_type ` int ( 2 ) unsigned NOT NULL default ' 0 ' ,
` al_field1 ` text NOT NULL ,
` al_field2 ` text NOT NULL ,
` al_field3 ` text NOT NULL ,
` al_field4 ` text NOT NULL ,
` al_field5 ` text NOT NULL ,
` al_field6 ` text NOT NULL ,
` al_field7 ` text NOT NULL ,
` al_field8 ` text NOT NULL ,
` al_field9 ` text NOT NULL ,
` al_field10 ` text NOT NULL ,
PRIMARY KEY ( ` id ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;