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)
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`
-- -----------------------------------------------------
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 ;
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`
-- -----------------------------------------------------
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
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`
-- -----------------------------------------------------
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 ' ,
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 ` ) ,
KEY ` nombre ` ( ` nombre ` ) ,
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
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`
-- -----------------------------------------------------
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 ' ,
` datos ` double ( 18 , 2 ) default NULL ,
` 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
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`
-- -----------------------------------------------------
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_adi ` int ( 10 ) unsigned NOT NULL auto_increment ,
` id_agente_modulo ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` datos ` double ( 18 , 2 ) default NULL ,
` utimestamp ` int ( 20 ) unsigned default ' 0 ' ,
PRIMARY KEY ( ` id_adi ` ) ,
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
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`
-- -----------------------------------------------------
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 ,
PRIMARY KEY ( ` id_agente_estado ` ) ,
KEY ` status_index_1 ` ( ` id_agente_modulo ` ) ,
KEY ` idx_agente ` ( ` id_agente ` ) ,
KEY ` idx_status ` ( ` estado ` ) ,
KEY ` current_interval ` ( ` current_interval ` ) ,
KEY ` running_by ` ( ` running_by ` ) ,
KEY ` last_execution_try ` ( ` last_execution_try ` )
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 ' ,
` 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 ' ,
` post_process ` double ( 18 , 5 ) default NULL ,
` prediction_module ` bigint ( 14 ) default ' 0 ' ,
` max_timeout ` int ( 4 ) unsigned default ' 0 ' ,
` 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 ,
` wizard_level ` enum ( ' basic ' , ' advanced ' , ' custom ' , ' nowizard ' ) default ' nowizard ' ,
` macros ` text ,
` critical_instructions ` text ,
` warning_instructions ` text ,
` unknown_instructions ` text ,
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-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 ,
` 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 ,
` trap_type ` int ( 11 ) NOT NULL default ' -1 ' ,
` single_value ` varchar ( 255 ) default ' ' ,
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 ,
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 ,
` field2 ` text ,
` field3 ` text ,
` id_group ` mediumint ( 8 ) unsigned NULL default 0 ,
` action_threshold ` int ( 10 ) NOT NULL default ' 0 ' ,
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 ,
` field1 ` text ,
` field2 ` text ,
` field3 ` text NOT NULL ,
` 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 ' ,
` field2_recovery ` text NOT NULL ,
` field3_recovery ` text NOT NULL ,
` priority ` tinyint ( 4 ) default ' 0 ' ,
` id_group ` mediumint ( 8 ) unsigned NULL default 0 ,
` special_day ` tinyint ( 1 ) default 0 ,
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-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_compound`
-- -----------------------------------------------------
2009-02-11 17:55:04 +01:00
CREATE TABLE IF NOT EXISTS ` talert_compound ` (
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 ( 255 ) default ' ' ,
` description ` mediumtext ,
` id_agent ` int ( 10 ) unsigned NOT 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 ' ,
` field2_recovery ` varchar ( 255 ) NOT NULL default ' ' ,
` field3_recovery ` mediumtext NOT NULL ,
` 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 ' ,
` priority ` tinyint ( 4 ) default ' 0 ' ,
` special_day ` tinyint ( 1 ) default 0 ,
PRIMARY KEY ( ` id ` ) ,
FOREIGN KEY ( ` id_agent ` ) REFERENCES tagente ( ` id_agente ` )
ON DELETE CASCADE ON UPDATE CASCADE
2009-02-11 17:55:04 +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 `talert_compound_elements`
-- -----------------------------------------------------
2009-02-11 17:55:04 +01:00
CREATE TABLE IF NOT EXISTS ` talert_compound_elements ` (
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_alert_compound ` int ( 10 ) unsigned NOT NULL ,
` id_alert_template_module ` int ( 10 ) unsigned NOT NULL ,
` operation ` enum ( ' NOP ' , ' AND ' , ' OR ' , ' XOR ' , ' NAND ' , ' NOR ' , ' NXOR ' ) ,
` order ` tinyint ( 2 ) unsigned default 0 ,
UNIQUE ( ` id_alert_compound ` , ` id_alert_template_module ` , ` operation ` ) ,
FOREIGN KEY ( ` id_alert_compound ` ) REFERENCES talert_compound ( ` id ` )
ON DELETE CASCADE ON UPDATE CASCADE ,
FOREIGN KEY ( ` id_alert_template_module ` ) REFERENCES talert_template_modules ( ` id ` )
ON DELETE CASCADE ON UPDATE CASCADE
2009-02-11 17:55:04 +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 `talert_compound_actions`
-- -----------------------------------------------------
2009-02-11 17:55:04 +01:00
CREATE TABLE IF NOT EXISTS ` talert_compound_actions ` (
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 ,
` id_alert_compound ` 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 ,
PRIMARY KEY ( ` id ` ) ,
FOREIGN KEY ( ` id_alert_compound ` ) REFERENCES talert_compound ( ` id ` )
ON DELETE CASCADE ON UPDATE CASCADE ,
FOREIGN KEY ( ` id_alert_action ` ) REFERENCES talert_actions ( ` id ` )
ON DELETE CASCADE ON UPDATE CASCADE
2008-03-26 17:47:39 +01:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2008-02-21 16:16:54 +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 ,
` date ` date NOT NULL DEFAULT ' 0000-00-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-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`
-- -----------------------------------------------------
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 ' ,
` event_type ` enum ( ' 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 ' ,
` 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 ,
PRIMARY KEY ( ` id_evento ` ) ,
KEY ` indice_1 ` ( ` id_agente ` , ` id_evento ` ) ,
KEY ` indice_2 ` ( ` utimestamp ` , ` id_evento ` ) ,
KEY ` idx_agentmodule ` ( ` id_agentmodule ` ) ,
INDEX criticity ( ` criticity ` ) ,
INDEX estado ( ` estado ` )
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-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`
-- -----------------------------------------------------
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 ' ' ,
2010-07-14 11:59:00 +02:00
` icon ` varchar ( 50 ) default NULL default ' world ' ,
` 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 ' ,
2010-07-14 11:59:00 +02:00
PRIMARY KEY ( ` id_grupo ` )
2007-08-20 17:32:27 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2007-03-12 18:58:52 +01:00
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tincidencia ` (
2008-12-10 21:15:38 +01:00
` id_incidencia ` bigint ( 6 ) unsigned zerofill NOT NULL auto_increment ,
2011-05-09 17:10:31 +02:00
` inicio ` datetime NOT NULL default ' 1970-01-01 00:00:00 ' ,
` cierre ` datetime NOT NULL default ' 1970-01-01 00:00:00 ' ,
2012-04-30 14:21:38 +02:00
` titulo ` text NOT NULL ,
2010-12-22 20:41:05 +01:00
` descripcion ` text NOT NULL ,
2008-08-05 13:42:08 +02:00
` id_usuario ` varchar ( 60 ) NOT NULL default ' ' ,
2006-03-27 05:37:27 +02:00
` origen ` varchar ( 100 ) NOT NULL default ' ' ,
2008-08-05 13:42:08 +02:00
` estado ` int ( 10 ) NOT NULL default ' 0 ' ,
` prioridad ` int ( 10 ) NOT NULL default ' 0 ' ,
` id_grupo ` mediumint ( 4 ) unsigned NOT NULL default ' 0 ' ,
2008-12-10 21:15:38 +01:00
` actualizacion ` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP ,
2006-03-27 05:37:27 +02:00
` id_creator ` varchar ( 60 ) default NULL ,
2008-12-10 21:15:38 +01:00
` id_lastupdate ` varchar ( 60 ) default NULL ,
` id_agente_modulo ` bigint ( 100 ) NOT NULL ,
2008-08-05 13:42:08 +02:00
` notify_email ` tinyint ( 3 ) unsigned NOT NULL default ' 0 ' ,
2012-01-23 18:01:00 +01:00
` id_agent ` int ( 10 ) unsigned NULL default 0 ,
2006-03-27 05:37:27 +02:00
PRIMARY KEY ( ` id_incidencia ` ) ,
2008-12-10 21:15:38 +01:00
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
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tlanguage ` (
2007-03-19 22:27:10 +01:00
` id_language ` varchar ( 6 ) NOT NULL default ' ' ,
2007-03-12 18:58:52 +01:00
` name ` varchar ( 100 ) NOT NULL default ' ' ,
2006-03-27 05:37:27 +02:00
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
2006-03-27 05:37:27 +02:00
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tlink ` (
2006-03-27 05:37:27 +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
2007-03-12 18:58:52 +01:00
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tmensajes ` (
` 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 ' ' ,
2012-04-30 14:21:38 +02:00
` mensaje ` text NOT NULL ,
2009-02-19 22:34:27 +01:00
` timestamp ` bigint ( 20 ) unsigned NOT NULL default ' 0 ' ,
2006-03-27 05:37:27 +02:00
` subject ` varchar ( 255 ) NOT NULL default ' ' ,
2008-08-05 13:42:08 +02:00
` estado ` int ( 4 ) unsigned NOT NULL default ' 0 ' ,
2007-03-12 18:58:52 +01:00
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
2006-03-27 05:37:27 +02:00
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tmodule_group ` (
` id_mg ` tinyint ( 4 ) unsigned NOT NULL auto_increment ,
2006-03-27 05:37:27 +02:00
` 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
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tnetwork_component ` (
` id_nc ` int ( 10 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 80 ) NOT NULL ,
2007-03-12 18:58:52 +01:00
` description ` varchar ( 250 ) default NULL ,
2008-08-05 13:42:08 +02:00
` id_group ` int ( 6 ) NOT NULL default ' 1 ' ,
2007-03-12 18:58:52 +01:00
` 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 ' ,
2010-12-22 20:41:05 +01:00
` tcp_send ` text NOT NULL ,
` tcp_rcv ` text NOT NULL ,
2007-03-12 18:58:52 +01:00
` snmp_community ` varchar ( 255 ) NOT NULL default ' NULL ' ,
` snmp_oid ` varchar ( 400 ) NOT NULL ,
2008-08-05 13:42:08 +02:00
` id_module_group ` tinyint ( 4 ) unsigned NOT NULL default ' 0 ' ,
` id_modulo ` int ( 10 ) unsigned default ' 0 ' ,
2009-05-22 11:08:55 +02:00
` id_plugin ` INTEGER unsigned default ' 0 ' ,
2012-04-30 14:21:38 +02:00
` plugin_user ` text ,
` plugin_pass ` text ,
2008-07-31 Ramon Novoa <rnovoa@artica.es>
* include/help/en/help_wmiquery.php,
include/help/en/help_wmifield.php,
include/help/en/help_wmikey.php: Added to repository. WMI help pages.
* include/languages/language_en.php, pandoradb.sql,
pandoradb_data.sql,
godmode/agentes/agent_template.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/agentes/module_manager_editor.php,
godmode/modules/manage_network_components_form.php,
godmode/modules/manage_network_components.php: Added support for WMI
modules, including components and templates.
* godmode/modules/manage_network_components_form_network.php,
godmode/modules/manage_network_components_form_wmi.php: Added to
repository. Component editors.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@991 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-07-31 13:26:02 +02:00
` plugin_parameter ` text ,
` max_timeout ` tinyint ( 3 ) unsigned default ' 0 ' ,
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
` history_data ` tinyint ( 1 ) unsigned default ' 1 ' ,
2009-12-28 16:52:17 +01:00
` min_warning ` double ( 18 , 2 ) default 0 ,
` max_warning ` double ( 18 , 2 ) default 0 ,
2012-04-30 14:21:38 +02:00
` str_warning ` text ,
2009-12-28 16:52:17 +01:00
` min_critical ` double ( 18 , 2 ) default 0 ,
` max_critical ` double ( 18 , 2 ) default 0 ,
2012-04-30 14:21:38 +02:00
` str_critical ` text ,
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
` min_ff_event ` int ( 4 ) unsigned default ' 0 ' ,
2012-04-30 14:21:38 +02:00
` custom_string_1 ` text ,
` custom_string_2 ` text ,
` custom_string_3 ` text ,
2010-02-12 12:13:24 +01:00
` custom_integer_1 ` int ( 10 ) default 0 ,
` custom_integer_2 ` int ( 10 ) default 0 ,
2012-02-03 13:43:22 +01:00
` post_process ` double ( 18 , 5 ) default 0 ,
2012-05-10 17:35:28 +02:00
` unit ` text ,
2012-07-06 12:58:00 +02:00
` wizard_level ` enum ( ' basic ' , ' advanced ' , ' custom ' , ' nowizard ' ) default ' nowizard ' ,
2012-07-06 13:57:35 +02:00
` only_metaconsole ` tinyint ( 1 ) unsigned default ' 0 ' ,
2012-07-19 16:32:34 +02:00
` macros ` text ,
2007-03-12 18:58:52 +01: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
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tnetwork_component_group ` (
` id_sg ` int ( 10 ) unsigned NOT NULL auto_increment ,
2007-03-12 18:58:52 +01:00
` name ` varchar ( 200 ) NOT NULL default ' ' ,
2008-08-05 13:42:08 +02:00
` parent ` mediumint ( 8 ) unsigned NOT NULL default ' 0 ' ,
2007-03-12 18:58:52 +01:00
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
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tnetwork_profile ` (
` id_np ` int ( 10 ) unsigned NOT NULL auto_increment ,
2007-03-12 18:58:52 +01:00
` 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
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tnetwork_profile_component ` (
2008-10-20 19:25:37 +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
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tnota ` (
2008-12-10 21:15:38 +01:00
` id_nota ` bigint ( 6 ) unsigned zerofill NOT NULL auto_increment ,
` id_incident ` bigint ( 6 ) unsigned zerofill NOT NULL ,
2006-03-27 05:37:27 +02:00
` id_usuario ` varchar ( 100 ) NOT NULL default ' 0 ' ,
2008-12-10 21:15:38 +01:00
` timestamp ` timestamp NOT NULL default CURRENT_TIMESTAMP ,
2006-03-27 05:37:27 +02:00
` nota ` mediumtext NOT NULL ,
2008-12-10 21:15:38 +01:00
PRIMARY KEY ( ` id_nota ` ) ,
KEY ` id_incident ` ( ` id_incident ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2006-03-27 05:37:27 +02: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`
-- -----------------------------------------------------
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-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`
-- -----------------------------------------------------
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 ' ,
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-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`
-- -----------------------------------------------------
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 ' ' ,
PRIMARY KEY ( ` id_recon_script ` )
2010-10-15 15:03:03 +02:00
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
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`
-- -----------------------------------------------------
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 ' ' ,
` subnet ` text NOT NULL default ' ' ,
` 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 ) ,
` field1 ` text NOT NULL default ' ' ,
` 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 ' ,
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-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`
-- -----------------------------------------------------
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 ` ) ,
2008-07-02 21:48:27 +02:00
KEY ` name ` ( ` name ` ) ,
KEY ` keepalive ` ( ` keepalive ` ) ,
KEY ` status ` ( ` status ` )
2010-02-25 19:48:36 +01:00
) ENGINE = MyISAM 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-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`
-- -----------------------------------------------------
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_utimestamp ` ( ` utimestamp ` ) ,
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-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`
-- -----------------------------------------------------
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-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`
-- -----------------------------------------------------
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 ` ) ,
INDEX status ( ` status ` )
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>
* 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`
-- -----------------------------------------------------
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 ,
` id_skin ` int ( 10 ) unsigned NOT NULL ,
` 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 ,
` metaconsole_access ` enum ( ' basic ' , ' advanced ' , ' custom ' , ' all ' , ' only_console ' ) default ' only_console ' ,
` not_login ` tinyint ( 1 ) unsigned NOT NULL DEFAULT 0 ,
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
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tusuario_perfil ` (
` id_up ` bigint ( 10 ) unsigned NOT NULL auto_increment ,
2006-03-27 05:37:27 +02:00
` id_usuario ` varchar ( 100 ) NOT NULL default ' ' ,
2008-08-05 13:42:08 +02:00
` id_perfil ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
` id_grupo ` int ( 10 ) NOT NULL default ' 0 ' ,
2006-03-27 05:37:27 +02:00
` assigned_by ` varchar ( 100 ) NOT NULL default ' ' ,
2011-05-13 13:16:18 +02:00
` id_policy ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
2006-03-27 05:37:27 +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
2007-04-13 20:47:58 +02:00
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tnews ` (
2007-04-13 20:47:58 +02:00
` id_news ` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT ,
` author ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
` subject ` varchar ( 255 ) NOT NULL DEFAULT ' ' ,
2007-04-18 19:17:06 +02:00
` text ` TEXT NOT NULL ,
2007-06-08 17:55:53 +02:00
` timestamp ` DATETIME NOT NULL DEFAULT 0 ,
2007-04-13 20:47:58 +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
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tgraph ` (
2007-04-19 20:50:07 +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 ,
2008-04-24 01:29:50 +02:00
` stacked ` tinyint ( 1 ) UNSIGNED NOT NULL default 0 ,
2009-09-18 20:36:20 +02:00
` id_group ` mediumint ( 8 ) unsigned NULL default 0 ,
2012-02-23 12:28:26 +01:00
` id_graph_template ` int ( 11 ) NOT NULL default 0 ,
2007-04-19 20:50:07 +02:00
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
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tgraph_source ` (
2007-04-19 20:50:07 +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 ,
2012-02-07 10:47:51 +01:00
` weight ` float ( 5 , 3 ) NOT NULL DEFAULT 0 ,
2007-04-19 20:50:07 +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-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`
-- -----------------------------------------------------
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 ,
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
2010-07-27 20:11:42 +02:00
-- -----------------------------------------------------
-- Table `treport_content`
-- -----------------------------------------------------
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 ,
` 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 ;
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` treport_content_sla_combined ` (
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
` id ` INTEGER UNSIGNED NOT NULL auto_increment ,
` id_report_content ` INTEGER UNSIGNED NOT NULL ,
2008-08-05 13:42:08 +02:00
` id_agent_module ` int ( 10 ) unsigned NOT NULL ,
2009-03-26 19:00:56 +01:00
` sla_max ` double ( 18 , 2 ) NOT NULL default 0 ,
` sla_min ` double ( 18 , 2 ) NOT NULL default 0 ,
2011-05-20 13:44:35 +02:00
` sla_limit ` double ( 18 , 2 ) NOT NULL default 0 ,
2012-04-30 14:21:38 +02:00
` server_name ` text ,
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
PRIMARY KEY ( ` id ` ) ,
FOREIGN KEY ( ` id_report_content ` ) REFERENCES treport_content ( ` id_rc ` )
2008-08-05 13:42:08 +02:00
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
2011-03-23 13:57:26 +01:00
CREATE TABLE IF NOT EXISTS ` treport_content_item ` (
` id ` INTEGER UNSIGNED NOT NULL auto_increment ,
` id_report_content ` INTEGER UNSIGNED NOT NULL ,
` id_agent_module ` int ( 10 ) unsigned NOT NULL ,
2012-04-30 14:21:38 +02:00
` server_name ` text ,
` operation ` text ,
2012-02-22 15:55:28 +01:00
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 ;
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 ` (
` id ` INTEGER UNSIGNED NOT NULL auto_increment ,
` name ` varchar ( 150 ) NOT NULL default ' ' ,
2012-04-30 14:21:38 +02:00
` sql ` TEXT ,
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
PRIMARY KEY ( ` id ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tlayout ` (
2007-05-20 19:12:31 +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 ,
` fullscreen ` tinyint ( 1 ) UNSIGNED NOT NULL default 0 ,
` 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
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`
-- -----------------------------------------------------
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 ,
` label ` varchar ( 200 ) DEFAULT " " ,
` 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 ,
` label_color ` varchar ( 20 ) DEFAULT " " ,
` no_link_color ` tinyint ( 1 ) UNSIGNED NOT NULL default 0 ,
2012-08-21 10:52:44 +02:00
` enable_link ` tinyint ( 1 ) UNSIGNED NOT NULL default 1 ,
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
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`
-- -----------------------------------------------------
-- 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 ,
` 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 ;
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`
-- -----------------------------------------------------
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 ;
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`
-- -----------------------------------------------------
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
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`
-- -----------------------------------------------------
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 ;
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tplanned_downtime ` (
2008-08-11 Esteban Sanchez <estebans@artica.es>
* include/functions_db.php: Added __ as an alias of lang_string().
* include/functions_reporting_pdf.php,
include/functions_reporting.php, include/functions.php,
include/functions_visual_map.php, index.php,
operation/incidents/incident.php,
operation/incidents/incident_detail.php,
operation/incidents/incident_note.php,
operation/incidents/incident_search.php,
operation/incidents/incident_statistics.php,
operation/snmpconsole/snmp_alert.php,
operation/snmpconsole/snmp_view.php, operation/users/user.php,
operation/users/user_edit.php, operation/users/user_statistics.php,
operation/events/event_statistics.php, operation/events/events.php,
operation/visual_console/render_view.php,
operation/visual_console/index.php, operation/extensions.php,
operation/agentes/estado_alertas.php,
operation/agentes/status_monitor.php,
operation/agentes/estado_grupo.php, operation/agentes/export_csv.php,
operation/agentes/datos_agente.php,
operation/agentes/estado_ultimopaquete.php,
operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php, operation/agentes/bulbs.php,
operation/agentes/status_events.php, operation/agentes/sla_view.php,
operation/agentes/exportdata.php,
operation/agentes/estado_monitores.php,
operation/agentes/ver_agente.php, operation/agentes/estadisticas.php,
operation/agentes/tactical.php, operation/agentes/networkmap.php,
operation/messages/message.php,
operation/reporting/reporting_viewer.php,
operation/reporting/graph_viewer.php,
operation/reporting/custom_reporting.php,
operation/servers/view_server.php,
operation/servers/view_server_detail.php, operation/menu.php,
reporting/fgraph.php, reporting/stat_win.php, ajax.php,
general/logoff.php, general/pandora_help.php, general/footer.php,
general/noaccess.php, general/logon_failed.php,
general/links_menu.php, general/login_page.php, general/logon_ok.php,
general/header.php, general/main_menu.php,
godmode/groups/configure_group.php, godmode/groups/group_list.php,
godmode/setup/news.php, godmode/setup/links.php,
godmode/setup/setup.php, godmode/users/user_list.php,
godmode/users/configure_user.php, godmode/profiles/profile_list.php,
godmode/admin_access_logs.php, godmode/db/db_info_data.php,
godmode/db/db_main.php, godmode/db/db_audit.php,
godmode/db/db_sanity.php, godmode/db/db_refine.php,
godmode/db/db_info.php, godmode/db/db_event.php,
godmode/db/db_purge.php, godmode/extensions.php,
godmode/agentes/agent_template.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/agentes/alert_manager.php,
godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_prediction.php,
godmode/agentes/alert_manager_editor.php,
godmode/agentes/manage_config.php,
godmode/agentes/module_manager_editor_data.php,
godmode/agentes/module_manager.php,
godmode/agentes/modificar_agente.php,
godmode/agentes/configurar_agente.php,
godmode/agentes/agent_disk_conf_editor.php,
godmode/agentes/planned_downtime.php,
godmode/agentes/manage_config_remote.php,
godmode/agentes/agent_manager.php,
godmode/modules/manage_network_components_form.php,
godmode/modules/manage_nc_groups_form.php,
godmode/modules/manage_network_templates.php,
godmode/modules/module_list.php,
godmode/modules/manage_network_templates_form.php,
godmode/modules/manage_network_components_form_network.php,
godmode/modules/manage_network_components_form_wmi.php,
godmode/modules/manage_network_components.php,
godmode/modules/manage_nc_groups.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/map_builder.php,
godmode/reporting/graph_builder.php, godmode/servers/plugin.php,
godmode/servers/manage_recontask.php,
godmode/servers/modificar_server.php,
godmode/servers/manage_recontask_form.php,
godmode/alerts/modify_alert.php, godmode/alerts/configure_alert.php,
godmode/menu.php: Replaced $id_user with $config['id_user']. Use __a
instead of $lang_label to future use of gettext. Style
corrections.
* godmode/agentes/planned_downtime.php: Rewritten to use Pandora
functions and adopt the UI style. Replaced lang_string with __().
* pandoradb.sql: Fields in tplanned_downtime renamed to fit
guidelines.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1005 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-08-11 12:59:07 +02:00
` id ` MEDIUMINT ( 8 ) NOT NULL AUTO_INCREMENT ,
` name ` VARCHAR ( 100 ) NOT NULL ,
` description ` TEXT NOT NULL ,
2008-08-21 21:16:16 +02:00
` date_from ` bigint ( 20 ) NOT NULL default ' 0 ' ,
` date_to ` bigint ( 20 ) NOT NULL default ' 0 ' ,
2008-10-22 14:01:36 +02:00
` executed ` tinyint ( 1 ) UNSIGNED NOT NULL default 0 ,
2009-09-28 12:40:52 +02:00
` id_group ` mediumint ( 8 ) unsigned NULL default 0 ,
2011-07-07 12:50:49 +02:00
` only_alerts ` tinyint ( 1 ) UNSIGNED NOT NULL default 0 ,
2008-08-21 21:16:16 +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
2008-08-05 13:42:08 +02:00
CREATE TABLE IF NOT EXISTS ` tplanned_downtime_agents ` (
2008-07-25 20:37:32 +02:00
` id ` int ( 20 ) unsigned NOT NULL auto_increment ,
` id_agent ` mediumint ( 8 ) unsigned NOT NULL default ' 0 ' ,
2012-01-27 14:28:34 +01:00
` id_downtime ` mediumint ( 8 ) NOT NULL default ' 0 ' ,
2012-01-27 13:30:30 +01:00
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
2010-01-12 19:08:08 +01:00
-- GIS extension Tables
2010-01-13 18:32:52 +01:00
-- -----------------------------------------------------
2010-02-17 20:35:39 +01:00
-- Table `tgis_data_history`
2010-01-13 18:32:52 +01:00
-- -----------------------------------------------------
2010-02-17 20:35:39 +01:00
CREATE TABLE IF NOT EXISTS ` tgis_data_history ` (
2010-01-13 18:32:52 +01:00
` id_tgis_data ` INT NOT NULL AUTO_INCREMENT COMMENT ' key of the table ' ,
2010-01-12 19:08:08 +01:00
` longitude ` DOUBLE NOT NULL ,
` latitude ` DOUBLE NOT NULL ,
` altitude ` DOUBLE NULL ,
2010-01-15 15:03:31 +01:00
` start_timestamp ` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT ' timestamp on wich the agente started to be in this position ' ,
2010-01-13 18:32:52 +01:00
` 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 ' ,
2010-01-18 11:33:17 +01:00
` 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 ' ,
2010-02-17 20:35:39 +01:00
` tagente_id_agente ` INT ( 10 ) UNSIGNED NOT NULL COMMENT ' reference to the agent ' ,
2010-01-12 19:08:08 +01:00
PRIMARY KEY ( ` id_tgis_data ` ) ,
2010-05-13 17:14:38 +02:00
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 ' ;
-- -----------------------------------------------------
-- Table `tgis_data_status`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tgis_data_status ` (
` 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 ` ) ,
2010-05-13 17:14:38 +02:00
INDEX ` start_timestamp_index ` USING BTREE ( ` start_timestamp ` ASC ) ,
2010-02-17 20:35:39 +01:00
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 )
ENGINE = InnoDB
COMMENT = ' Table to store last GIS information of the agents ' ;
2010-01-12 19:08:08 +01:00
2010-01-13 18:32:52 +01:00
-- -----------------------------------------------------
-- Table `tgis_map`
-- -----------------------------------------------------
2010-01-12 19:08:08 +01:00
CREATE TABLE IF NOT EXISTS ` tgis_map ` (
2010-01-14 15:03:33 +01:00
` id_tgis_map ` INT NOT NULL AUTO_INCREMENT COMMENT ' table identifier ' ,
2010-01-13 18:32:52 +01:00
` 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 ' ,
2010-01-14 15:03:33 +01:00
` zoom_level ` TINYINT ( 2 ) NULL DEFAULT ' 1 ' COMMENT ' Zoom level to show when the map is loaded. ' ,
2010-01-13 18:32:52 +01:00
` 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 ' ,
2010-01-14 15:03:33 +01:00
` group_id ` INT ( 10 ) NOT NULL DEFAULT 0 COMMENT ' Group that owns the map ' ,
2010-02-10 18:31:26 +01:00
` default_map ` TINYINT ( 1 ) NULL DEFAULT 0 COMMENT ' 1 if this is the default map, 0 in other case ' ,
2010-01-22 15:18:23 +01:00
PRIMARY KEY ( ` id_tgis_map ` ) ,
INDEX ` map_name_index ` ( ` map_name ` ASC )
)
2010-01-12 19:08:08 +01:00
ENGINE = InnoDB
COMMENT = ' Table containing information about a gis map ' ;
2010-01-13 18:32:52 +01:00
-- -----------------------------------------------------
-- Table `tgis_map_connection`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tgis_map_connection ` (
2010-01-14 15:03:33 +01:00
` id_tmap_connection ` INT NOT NULL AUTO_INCREMENT COMMENT ' table id ' ,
2010-01-22 15:18:23 +01:00
` 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 ' ,
2010-01-13 18:32:52 +01:00
` conection_data ` TEXT NULL COMMENT ' connection information (this can probably change to fit better the possible connection parameters) ' ,
2010-01-22 15:18:23 +01:00
` 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 ' ,
2010-01-25 16:29:33 +01:00
` group_id ` INT ( 10 ) NOT NULL DEFAULT 0 COMMENT ' Group that owns the map ' ,
2010-01-22 15:18:23 +01:00
PRIMARY KEY ( ` id_tmap_connection ` ) )
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 ` (
` 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 `
2010-01-13 18:32:52 +01:00
FOREIGN KEY ( ` tgis_map_id_tgis_map ` )
REFERENCES ` tgis_map ` ( ` id_tgis_map ` )
ON DELETE CASCADE
2010-01-22 15:18:23 +01:00
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
2010-01-13 18:32:52 +01:00
ON UPDATE NO ACTION )
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 ` (
2010-01-14 15:03:33 +01:00
` id_tmap_layer ` INT NOT NULL AUTO_INCREMENT COMMENT ' table id ' ,
2010-01-13 18:32:52 +01:00
` 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 ' ,
2010-01-22 15:18:23 +01:00
` 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 ' ,
2010-01-13 18:32:52 +01:00
` tgis_map_id_tgis_map ` INT NOT NULL COMMENT ' reference to the map containing the layer ' ,
2010-04-29 10:25:20 +02:00
` tgrupo_id_grupo ` MEDIUMINT ( 4 ) NOT NULL COMMENT ' reference to the group shown in the layer ' ,
2010-01-22 15:18:23 +01:00
PRIMARY KEY ( ` id_tmap_layer ` ) ,
2010-01-12 19:08:08 +01:00
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 ` )
2010-01-13 18:32:52 +01:00
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 ` (
` 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 ` )
2010-02-17 20:35:39 +01:00
ON DELETE CASCADE
2010-01-22 15:18:23 +01:00
ON UPDATE NO ACTION ,
CONSTRAINT ` fk_tgis_map_layer_has_tagente_tagente1 `
FOREIGN KEY ( ` tagente_id_agente ` )
REFERENCES ` tagente ` ( ` id_agente ` )
2010-02-17 20:35:39 +01:00
ON DELETE CASCADE
2010-01-22 15:18:23 +01:00
ON UPDATE NO ACTION )
ENGINE = InnoDB
COMMENT = ' Table to define wich agents are shown in a layer ' ;
2010-02-10 18:10:10 +01:00
-- -----------------------------------------------------
-- Table `tgroup_stat`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tgroup_stat ` (
` 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 ' ,
2010-02-19 Sancho Lerena <slerena@artica.es>
* functions_events.php: Fixed typo (switched meaning) in two labels.
* include/styles/pandora.css: Changed background color of th default style.
* include/functions_reporting.php: Improved function get_group_stats(). Now
supports stats from batch-mode and get realtime stats in a more efficient
way. Fixed get_fired_alerts_reporting_table() to avoid problems in external
reporting (PDF & XML).
* include/functions_servers.php: get_server_performance() now uses batch mode
stats reporting, and improved also the realtime stats generation. Same with
function get_server_info().
* include/functions_config.php: Added new config tokens (not fully
implemented yet) for event, trap, strings and audit automatic purge.
* include/functions_ui.php: Added new print_page_header() function to set
the new standard header in all pages, using the "tabbed" format to show
the title, subtitle and other options like help, or custom-tabs for the page
* pandoradb.sql: Added tserver.stat_utimestamp field. Added indexes to
tsession table. Fixed typo in field name in tgroup_stat: agents_uknown to
agents_unknown.
* extensions/ext_backup: New directory to place "deleted" extensions.
* extensions/dbmanager/dbmanager.css: Table names now are in it's original
lowercase/uppercase format.
* extensions/dbmanager.php: Updated headers, and now return "empty" when
a search is empty, instead "error" as before.
* extensions/users_connected.php
extensions/module_groups.php
extensions/plugin_registration.php
extensions/pandora_logs.php
operation/incidents/incident.php
operation/snmpconsole/snmp_view.php
operation/users/user.php
operation/users/user_edit.php
godmode/agentes/planned_downtime.php
operation/events/events.php
operation/visual_console/index.php
operation/agentes/estado_generalagente.php
operation/agentes/estado_agente.php
operation/agentes/exportdata.php
operation/agentes/ver_agente.php
operation/agentes/status_monitor.php
operation/agentes/alerts_status.php
operation/users/user_statistics.php: Added new header format.
* operation/agentes/estado_grupo.php: Removed old group view.
* operation/agentes/tactical.php: Adapted to use new realtime/batch
statistical system. Placed events above server info. Showing only pending
events and other minor changes.
* operation/agentes/group_view.php: NEW screen, replacing old one. Probably
most ugly, but much more useful than before.
* operation/agentes/networkmap.php: Added title.
* operation/messages/message.php: Added title and adding some exists in
code was missing before.
* operation/reporting/reporting_viewer.php: Added title.
* operation/reporting/graph_viewer.php: Added title.
* operation/reporting/custom_reporting.php: Added title.
* operation/servers/view_server.php:
* operation/menu.php: Replaced old group view with new (this has english
name). Removed autorefresh "by default" in server view.
* extras/pandoradb_migrate_v3.0_to_v3.1.sql: Fixed typo.
* extras/pandora_diag.php: Minor changes, removed some info and added other.
* general/logon_ok.php: Minor aesthetic changes.
* general/header.php: Fixed missing ";"
* operation/extensions.php,
godmode/extensions.php: Added support for delete extensions.
* godmode/menu.php: New setup items.
* godmode/setup/setup.php,
godmode/setup/performance.php,
godmode/setup/setup_visuals.php: Reordered setup options, new setup section
"Performance", added new performance options to set "realtime" statistics
or "batchmode" with it's own interval. Some setup info is now shared with
the servers (but it it's any change in setup, servers should be restarted
anyway).
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2390 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-02-19 16:16:03 +01:00
` agents_unknown ` int ( 10 ) unsigned NOT NULL default ' 0 ' ,
2010-02-10 18:10:10 +01:00
` utimestamp ` int ( 20 ) unsigned NOT NULL default 0 ,
PRIMARY KEY ( ` id_group ` )
) ENGINE = InnoDB
COMMENT = ' Table to store global system stats per group '
DEFAULT CHARSET = utf8 ;
2010-07-30 11:03:23 +02:00
-- -----------------------------------------------------
-- Table `tnetwork_map`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tnetwork_map ` (
` 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 ,
2010-08-10 14:34:21 +02:00
` center ` INT UNSIGNED NOT NULL DEFAULT 0 ,
2010-07-30 11:03:23 +02:00
` contracted_nodes ` TEXT ,
2011-07-04 15:07:04 +02:00
` show_snmp_modules ` TINYINT ( 1 ) UNSIGNED NOT NULL DEFAULT 0 ,
2010-07-30 11:03:23 +02:00
PRIMARY KEY ( ` id_networkmap ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-08-12 14:23:25 +02:00
-- -----------------------------------------------------
-- Table `tsnmp_filter`
-- -----------------------------------------------------
2010-08-25 14:04:42 +02:00
CREATE TABLE IF NOT EXISTS ` tsnmp_filter ` (
2010-08-12 14:23:25 +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 ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2010-02-10 18:10:10 +01:00
2010-08-25 14:04:42 +02:00
-- -----------------------------------------------------
-- Table `tagent_custom_fields`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tagent_custom_fields ` (
` 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 ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
-- -----------------------------------------------------
-- Table `tagent_custom_data`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tagent_custom_data ` (
` id_field ` int ( 10 ) unsigned NOT NULL ,
` id_agent ` int ( 10 ) unsigned NOT NULL ,
2012-04-30 14:21:38 +02:00
` description ` text ,
2010-08-25 14:04:42 +02:00
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 ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2011-05-26 12:51:17 +02:00
-- -----------------------------------------------------
-- Table `ttag`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` ttag ` (
` id_tag ` integer ( 10 ) unsigned NOT NULL auto_increment ,
` name ` varchar ( 100 ) NOT NULL default ' ' ,
2012-04-30 14:21:38 +02:00
` description ` text NOT NULL ,
` url ` mediumtext NOT NULL ,
2011-05-26 12:51:17 +02:00
PRIMARY KEY ( ` id_tag ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
-- -----------------------------------------------------
-- Table `ttag_module`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` ttag_module ` (
` 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 ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
-- -----------------------------------------------------
-- Table `ttag_policy_module`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` ttag_policy_module ` (
` 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 ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
-- -----------------------------------------------------
-- Table `ttag_event`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` ttag_event ` (
` id_tag ` int ( 10 ) NOT NULL ,
` id_evento ` bigint ( 20 ) NOT NULL DEFAULT 0 ,
PRIMARY KEY ( id_tag , id_evento ) ,
KEY ` idx_id_evento ` ( ` id_evento ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2011-12-21 16:28:01 +01:00
-- -----------------------------------------------------
-- Table `tnetflow_filter`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tnetflow_filter ` (
` id_sg ` int ( 10 ) unsigned NOT NULL auto_increment ,
2012-01-17 15:01:49 +01:00
` id_name ` varchar ( 600 ) NOT NULL default ' 0 ' ,
2012-01-11 16:02:27 +01:00
` id_group ` int ( 10 ) ,
2012-01-17 15:01:49 +01:00
` ip_dst ` TEXT NOT NULL ,
` ip_src ` TEXT NOT NULL ,
` dst_port ` TEXT NOT NULL ,
` src_port ` TEXT NOT NULL ,
2012-01-23 16:37:45 +01:00
` advanced_filter ` TEXT NOT NULL ,
2012-01-24 Ramon Novoa <rnovoa@artica.es>
* include/functions_config.php,
include/functions_netflow.php,
pandoradb.sql,
pandoradb.postgreSQL.sql,
pandoradb.oracle.sql,
operation/netflow/nf_live_view.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,
godmode/agentes/module_manager_editor_prediction.php,
godmode/agentes/configurar_agente.php,
godmode/menu.php,
godmode/netflow/nf_edit_form.php: Added support for enterprise
netflow modules.
* godmode/netflow/nf_manage.php: Moved to
godmode/setup/setup_netflow.php.
* godmode/netflow/nf_option_form.php: Removed from repository. Not used.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5416 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-01-24 18:11:12 +01:00
` filter_args ` TEXT NOT NULL ,
2011-12-21 16:28:01 +01:00
` aggregate ` varchar ( 60 ) ,
2012-01-10 16:23:56 +01:00
` output ` varchar ( 60 ) ,
2011-12-21 16:28:01 +01:00
PRIMARY KEY ( ` id_sg ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
-- -----------------------------------------------------
-- Table `tnetflow_report`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tnetflow_report ` (
` id_report ` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT ,
` id_name ` varchar ( 150 ) NOT NULL default ' ' ,
` description ` TEXT NOT NULL ,
2012-01-11 16:02:27 +01:00
` id_group ` int ( 10 ) ,
2011-12-21 16:28:01 +01:00
PRIMARY KEY ( ` id_report ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
-- -----------------------------------------------------
-- Table `tnetflow_report_content`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tnetflow_report_content ` (
` id_rc ` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT ,
` id_report ` INTEGER UNSIGNED NOT NULL default 0 ,
2012-01-09 11:04:31 +01:00
` id_filter ` INTEGER UNSIGNED NOT NULL default 0 ,
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
-- -----------------------------------------------------
-- Table `tevent_filter`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tevent_filter ` (
` id_filter ` int ( 10 ) unsigned NOT NULL auto_increment ,
2012-02-09 12:20:28 +01:00
` id_group_filter ` int ( 10 ) NOT NULL default 0 ,
2012-02-08 14:04:18 +01:00
` id_name ` varchar ( 600 ) NOT NULL ,
` id_group ` int ( 10 ) NOT NULL default 0 ,
2012-04-30 14:21:38 +02:00
` event_type ` text NOT NULL ,
2012-02-08 14:04:18 +01:00
` severity ` int ( 10 ) NOT NULL default - 1 ,
` status ` int ( 10 ) NOT NULL default - 1 ,
2012-04-30 14:21:38 +02:00
` search ` TEXT ,
` text_agent ` TEXT ,
2012-02-08 14:04:18 +01:00
` 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 ,
` tag ` varchar ( 600 ) NOT NULL default ' ' ,
` filter_only_alert ` int ( 10 ) NOT NULL default - 1 ,
PRIMARY KEY ( ` id_filter ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;
2012-02-20 17:15:34 +01:00
2012-05-30 14:07:26 +02:00
-- -----------------------------------------------------
-- Table `tpassword_history`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS ` tpassword_history ` (
` 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 ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 ;