2019-02-25 18:41:24 +01:00
|
|
|
START TRANSACTION;
|
|
|
|
|
2019-02-25 18:42:52 +01:00
|
|
|
UPDATE `twidget` SET `unique_name`='example' WHERE `class_name` LIKE 'WelcomeWidget';
|
2019-02-25 18:41:24 +01:00
|
|
|
|
2019-02-21 13:16:32 +01:00
|
|
|
INSERT INTO `tconfig` (`token`, `value`) VALUES ('status_monitor_fields', 'policy,agent,data_type,module_name,server_type,interval,status,graph,warn,data,timestamp');
|
|
|
|
|
2019-02-21 13:38:58 +01:00
|
|
|
ALTER TABLE `trecon_task` ADD COLUMN `wmi_enabled` tinyint(1) unsigned DEFAULT '0';
|
|
|
|
ALTER TABLE `trecon_task` ADD COLUMN `auth_strings` text;
|
|
|
|
ALTER TABLE `trecon_task` ADD COLUMN `autoconfiguration_enabled` tinyint(1) unsigned default '0';
|
|
|
|
|
|
|
|
|
2019-02-22 10:41:54 +01:00
|
|
|
INSERT INTO `trecon_script` (`name`,`description`,`script`,`macros`) VALUES ('Discovery.Application.VMware', 'Discovery Application script to monitor VMware technologies (ESXi, VCenter, VSphere)', '/usr/share/pandora_server/util/recon_scripts/vmware-plugin.pl', '{"1":{"macro":"_field1_","desc":"Configuration file","help":"","value":"","hide":""}}');
|
|
|
|
INSERT INTO `trecon_script` (`name`,`description`,`script`,`macros`) VALUES ('Discovery.Cloud', 'Discovery Cloud script to monitor Cloud technologies (AWS.EC2, AWS.S3, AWS.RDS, RDS,ȊWS.EKS)', '/usr/share/pandora_server/util/recon_scripts/pcm_client.pl', '{"1":{"macro":"_field1_","desc":"Configuration file","help":"","value":"","hide":""}}');
|
2019-02-21 13:38:58 +01:00
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `tevent_extended` (
|
|
|
|
`id` serial PRIMARY KEY,
|
|
|
|
`id_evento` bigint(20) unsigned NOT NULL,
|
|
|
|
`external_id` bigint(20) unsigned,
|
|
|
|
`utimestamp` bigint(20) NOT NULL default '0',
|
|
|
|
`description` text,
|
|
|
|
FOREIGN KEY `tevent_ext_fk`(`id_evento`) REFERENCES `tevento`(`id_evento`)
|
|
|
|
ON UPDATE CASCADE ON DELETE CASCADE
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
|
|
|
|
CREATE TABLE `tnotification_source` (
|
|
|
|
`id` serial,
|
|
|
|
`description` VARCHAR(255) DEFAULT NULL,
|
|
|
|
`icon` text,
|
|
|
|
`max_postpone_time` int(11) DEFAULT NULL,
|
|
|
|
`enabled` int(1) DEFAULT NULL,
|
|
|
|
`user_editable` int(1) DEFAULT NULL,
|
|
|
|
`also_mail` int(1) DEFAULT NULL,
|
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Dumping data for table `tnotification_source`
|
|
|
|
--
|
|
|
|
INSERT INTO `tnotification_source`(`description`, `icon`, `max_postpone_time`, `enabled`, `user_editable`, `also_mail`) VALUES
|
|
|
|
("System status", "icono_info_mr.png", 86400, 1, 1, 0),
|
|
|
|
("Message", "icono_info_mr.png", 86400, 1, 1, 0),
|
|
|
|
("Pending task", "icono_info_mr.png", 86400, 1, 1, 0),
|
|
|
|
("Advertisement", "icono_info_mr.png", 86400, 1, 1, 0),
|
|
|
|
("Official communication", "icono_info_mr.png", 86400, 1, 1, 0),
|
|
|
|
("Sugerence", "icono_info_mr.png", 86400, 1, 1, 0);
|
|
|
|
|
|
|
|
-- -----------------------------------------------------
|
|
|
|
-- Table `tmensajes`
|
|
|
|
-- -----------------------------------------------------
|
|
|
|
ALTER TABLE `tmensajes` ADD COLUMN `url` TEXT;
|
|
|
|
ALTER TABLE `tmensajes` ADD COLUMN `response_mode` VARCHAR(200) DEFAULT NULL;
|
|
|
|
ALTER TABLE `tmensajes` ADD COLUMN `citicity` INT(10) UNSIGNED DEFAULT '0';
|
|
|
|
ALTER TABLE `tmensajes` ADD COLUMN `id_source` BIGINT(20) UNSIGNED NOT NULL;
|
|
|
|
ALTER TABLE `tmensajes` ADD COLUMN `subtype` VARCHAR(255) DEFAULT '';
|
|
|
|
ALTER TABLE `tmensajes` ADD INDEX (`id_source`);
|
|
|
|
UPDATE `tmensajes` SET `id_source`=(SELECT `id` FROM `tnotification_source` WHERE `description` = "Message");
|
|
|
|
ALTER TABLE `tmensajes` ADD CONSTRAINT `tsource_fk` FOREIGN KEY (`id_source`) REFERENCES `tnotification_source` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
|
|
|
|
|
|
|
|
|
2019-02-21 14:27:09 +01:00
|
|
|
CREATE TABLE IF NOT EXISTS `tnotification_user` (
|
2019-02-21 13:38:58 +01:00
|
|
|
`id_mensaje` INT(10) UNSIGNED NOT NULL,
|
|
|
|
`id_user` VARCHAR(60) NOT NULL,
|
|
|
|
`utimestamp_read` BIGINT(20),
|
|
|
|
`utimestamp_erased` BIGINT(20),
|
|
|
|
`postpone` INT,
|
|
|
|
PRIMARY KEY (`id_mensaje`,`id_user`),
|
|
|
|
FOREIGN KEY (`id_mensaje`) REFERENCES `tmensajes`(`id_mensaje`)
|
|
|
|
ON UPDATE CASCADE ON DELETE CASCADE,
|
|
|
|
FOREIGN KEY (`id_user`) REFERENCES `tusuario`(`id_user`)
|
|
|
|
ON UPDATE CASCADE ON DELETE CASCADE
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
|
2019-02-21 14:27:09 +01:00
|
|
|
CREATE TABLE IF NOT EXISTS `tnotification_group` (
|
2019-02-21 13:38:58 +01:00
|
|
|
`id_mensaje` INT(10) UNSIGNED NOT NULL,
|
|
|
|
`id_group` mediumint(4) UNSIGNED NOT NULL,
|
|
|
|
PRIMARY KEY (`id_mensaje`,`id_group`),
|
|
|
|
FOREIGN KEY (`id_mensaje`) REFERENCES `tmensajes`(`id_mensaje`)
|
|
|
|
ON UPDATE CASCADE ON DELETE CASCADE
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
|
2019-02-21 14:27:09 +01:00
|
|
|
CREATE TABLE IF NOT EXISTS `tnotification_source_user` (
|
2019-02-21 13:38:58 +01:00
|
|
|
`id_source` BIGINT(20) UNSIGNED NOT NULL,
|
|
|
|
`id_user` VARCHAR(60),
|
|
|
|
`enabled` INT(1) DEFAULT NULL,
|
|
|
|
`also_mail` INT(1) DEFAULT NULL,
|
|
|
|
PRIMARY KEY (`id_source`,`id_user`),
|
|
|
|
FOREIGN KEY (`id_source`) REFERENCES `tnotification_source`(`id`)
|
|
|
|
ON UPDATE CASCADE ON DELETE CASCADE,
|
|
|
|
FOREIGN KEY (`id_user`) REFERENCES `tusuario`(`id_user`)
|
|
|
|
ON UPDATE CASCADE ON DELETE CASCADE
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
|
2019-02-21 14:27:09 +01:00
|
|
|
CREATE TABLE IF NOT EXISTS `tnotification_source_group` (
|
2019-02-21 13:38:58 +01:00
|
|
|
`id_source` BIGINT(20) UNSIGNED NOT NULL,
|
|
|
|
`id_group` mediumint(4) unsigned NOT NULL,
|
|
|
|
PRIMARY KEY (`id_source`,`id_group`),
|
|
|
|
INDEX (`id_group`),
|
|
|
|
FOREIGN KEY (`id_source`) REFERENCES `tnotification_source`(`id`)
|
|
|
|
ON UPDATE CASCADE ON DELETE CASCADE
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
|
2019-02-21 14:27:09 +01:00
|
|
|
CREATE TABLE IF NOT EXISTS `tnotification_source_group_user`(
|
2019-02-21 13:38:58 +01:00
|
|
|
`id_source` BIGINT(20) UNSIGNED NOT NULL,
|
|
|
|
`id_group` mediumint(4) unsigned NOT NULL,
|
|
|
|
`id_user` VARCHAR(60),
|
|
|
|
`enabled` INT(1) DEFAULT NULL,
|
|
|
|
`also_mail` INT(1) DEFAULT NULL,
|
|
|
|
PRIMARY KEY (`id_source`,`id_user`),
|
|
|
|
FOREIGN KEY (`id_source`) REFERENCES `tnotification_source`(`id`)
|
|
|
|
ON UPDATE CASCADE ON DELETE CASCADE,
|
|
|
|
FOREIGN KEY (`id_user`) REFERENCES `tusuario`(`id_user`)
|
|
|
|
ON UPDATE CASCADE ON DELETE CASCADE,
|
|
|
|
FOREIGN KEY (`id_group`) REFERENCES `tnotification_source_group`(`id_group`)
|
|
|
|
ON UPDATE CASCADE ON DELETE CASCADE
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
|
|
|
|
INSERT INTO `talert_commands` (`name`, `command`, `description`, `internal`, `fields_descriptions`, `fields_values`) VALUES ('Generate Notification','Internal type','This command allows you to send an internal notification to any user or group.',1,'[\"Destination user\",\"Destination group\",\"Title\",\"Message\",\"Link\",\"Criticity\",\"\",\"\",\"\",\"\",\"\"]','[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"]');
|
|
|
|
|
2019-02-21 13:58:29 +01:00
|
|
|
INSERT INTO `tnotification_source_user` (`id_source`, `id_user`, `enabled`, `also_mail`) VALUES ((SELECT `id` FROM `tnotification_source` WHERE `description`="System status"), "admin", 1, 0);
|
2019-02-22 12:40:02 +01:00
|
|
|
INSERT INTO `tnotification_source_group` SELECT `id`,0 FROM `tnotification_source` WHERE `description`="Message";
|
2019-02-21 14:27:09 +01:00
|
|
|
INSERT INTO `tnotification_user` (`id_mensaje`, `id_user`) SELECT `id_mensaje`, `id_usuario_destino` FROM `tmensajes` WHERE `id_usuario_destino` != '';
|
2019-02-21 13:58:29 +01:00
|
|
|
|
2019-02-25 17:45:37 +01:00
|
|
|
INSERT INTO tlog_graph_models (`title`,`regexp`,`fields`,`average`) VALUES ('Apache accesses per client and status',
|
|
|
|
'(.*?)\ -.*1.1"\ (\d+)\ \d+',
|
|
|
|
'host,status', 1);
|
|
|
|
|
|
|
|
INSERT INTO tlog_graph_models (`title`,`regexp`,`fields`,`average`) VALUES ('Apache time per requester and html code',
|
|
|
|
'(.*?)\ -.*1.1"\ (\d+)\ (\d+)',
|
|
|
|
'origin,respose,_time_', 1);
|
|
|
|
|
|
|
|
INSERT INTO tlog_graph_models (`title`,`regexp`,`fields`,`average`) VALUES ('Count output',
|
|
|
|
'.*',
|
|
|
|
'Coincidences', 0);
|
|
|
|
|
|
|
|
INSERT INTO tlog_graph_models (`title`,`regexp`,`fields`,`average`) VALUES ('Events replicated to metaconsole',
|
|
|
|
'.* (.*?) .* (\d+) events replicated to metaconsole',
|
|
|
|
'server,_events_', 0);
|
|
|
|
|
|
|
|
INSERT INTO tlog_graph_models (`title`,`regexp`,`fields`,`average`) VALUES ('Pages with warnings',
|
|
|
|
'PHP Warning:.*in (.*?) on',
|
|
|
|
'page', 0);
|
|
|
|
|
|
|
|
INSERT INTO tlog_graph_models (`title`,`regexp`,`fields`,`average`) VALUES ('Users login',
|
|
|
|
'Starting Session \d+\ of user (.*)',
|
|
|
|
'user', 0);
|
|
|
|
|
2019-02-25 18:41:24 +01:00
|
|
|
COMMIT;
|