165 lines
8.1 KiB
SQL
165 lines
8.1 KiB
SQL
CREATE DATABASE IF NOT EXISTS `mon` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
|
USE `mon`;
|
|
|
|
SET foreign_key_checks = 0;
|
|
|
|
DROP TABLE IF EXISTS `alarm`;
|
|
CREATE TABLE `alarm` (
|
|
`id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`alarm_definition_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
|
`state` enum('UNDETERMINED','OK','ALARM') COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`created_at` datetime NOT NULL,
|
|
`updated_at` datetime NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `tenant_id` (`alarm_definition_id`),
|
|
CONSTRAINT `fk_alarm_definition_id` FOREIGN KEY (`alarm_definition_id`) REFERENCES `alarm_definition` (`id`) ON DELETE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
|
|
DROP TABLE IF EXISTS `alarm_action`;
|
|
CREATE TABLE `alarm_action` (
|
|
`alarm_definition_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`alarm_state` enum('UNDETERMINED','OK','ALARM') COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`action_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
PRIMARY KEY (`alarm_definition_id`,`alarm_state`,`action_id`),
|
|
CONSTRAINT `fk_alarm_action_alarm_id` FOREIGN KEY (`alarm_definition_id`) REFERENCES `alarm_definition` (`id`) ON DELETE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
|
|
DROP TABLE IF EXISTS `alarm_definition`;
|
|
CREATE TABLE `alarm_definition` (
|
|
`id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`tenant_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
|
`description` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
|
`expression` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`severity` enum('LOW','MEDIUM','HIGH','CRITICAL') COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`match_by` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '',
|
|
`actions_enabled` tinyint(1) NOT NULL DEFAULT '1',
|
|
`created_at` datetime NOT NULL,
|
|
`updated_at` datetime NOT NULL,
|
|
`deleted_at` datetime DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `tenant_id` (`tenant_id`),
|
|
KEY `created_at` (`created_at`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
|
|
DROP TABLE IF EXISTS `alarm_metric`;
|
|
CREATE TABLE `alarm_metric` (
|
|
`alarm_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`metric_definition_dimensions_id` binary(20) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
|
|
PRIMARY KEY (`alarm_id`,`metric_definition_dimensions_id`),
|
|
CONSTRAINT `fk_alarm` FOREIGN KEY (`alarm_id`) REFERENCES `alarm` (`id`) ON DELETE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
|
|
DROP TABLE IF EXISTS `metric_definition`;
|
|
CREATE TABLE `metric_definition` (
|
|
`id` binary(20) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
|
|
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`tenant_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`region` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
|
|
DROP TABLE IF EXISTS `metric_definition_dimensions`;
|
|
CREATE TABLE `metric_definition_dimensions` (
|
|
`id` binary(20) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
|
|
`metric_definition_id` binary(20) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
|
|
`metric_dimension_set_id` binary(20) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
|
|
/*
|
|
* mysql limits the size of a unique key to 767 bytes. The utf8mb4 charset requires
|
|
* 4 bytes to be allocated for each character while the utf8 charset requires 3 bytes.
|
|
* The utf8 charset should be sufficient for any reasonable characters, see the definition
|
|
* of supplementary characters for what it doesn't support.
|
|
* Even with utf8, the unique key length would be 785 bytes so only a subset of the
|
|
* name is used. Potentially the size of the name should be limited to 250 characters
|
|
* which would resolve this issue.
|
|
*
|
|
* The unique key is required to allow high performance inserts without doing a select by using
|
|
* the "insert into metric_dimension ... on duplicate key update dimension_set_id=dimension_set_id
|
|
* syntax
|
|
*/
|
|
DROP TABLE IF EXISTS `metric_dimension`;
|
|
CREATE TABLE `metric_dimension` (
|
|
`dimension_set_id` binary(20) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
|
|
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
|
|
`value` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
|
|
UNIQUE KEY `metric_dimension_key` (`dimension_set_id`,`name`(252))
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='PRIMARY KEY (`id`)';
|
|
|
|
DROP TABLE IF EXISTS `notification_method`;
|
|
CREATE TABLE `notification_method` (
|
|
`id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`tenant_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`name` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
|
`type` enum('EMAIL','SMS', 'WEBHOOK') COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
|
`created_at` datetime NOT NULL,
|
|
`updated_at` datetime NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
|
|
DROP TABLE IF EXISTS `sub_alarm_definition`;
|
|
CREATE TABLE `sub_alarm_definition` (
|
|
`id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`alarm_definition_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
|
`function` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`metric_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
|
`operator` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`threshold` double NOT NULL,
|
|
`period` int(11) NOT NULL,
|
|
`periods` int(11) NOT NULL,
|
|
`created_at` datetime NOT NULL,
|
|
`updated_at` datetime NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `fk_sub_alarm_definition` (`alarm_definition_id`),
|
|
CONSTRAINT `fk_sub_alarm_definition` FOREIGN KEY (`alarm_definition_id`) REFERENCES `alarm_definition` (`id`) ON DELETE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
|
|
DROP TABLE IF EXISTS `sub_alarm_definition_dimension`;
|
|
CREATE TABLE `sub_alarm_definition_dimension` (
|
|
`sub_alarm_definition_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
|
`dimension_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
|
`value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
|
CONSTRAINT `fk_sub_alarm_definition_dimension` FOREIGN KEY (`sub_alarm_definition_id`) REFERENCES `sub_alarm_definition` (`id`) ON DELETE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
|
|
DROP TABLE IF EXISTS `sub_alarm`;
|
|
CREATE TABLE `sub_alarm` (
|
|
`id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`alarm_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
|
`sub_expression_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
|
`expression` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`created_at` datetime NOT NULL,
|
|
`updated_at` datetime NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `fk_sub_alarm` (`alarm_id`),
|
|
KEY `fk_sub_alarm_expr` (`sub_expression_id`),
|
|
CONSTRAINT `fk_sub_alarm` FOREIGN KEY (`alarm_id`) REFERENCES `alarm` (`id`) ON DELETE CASCADE,
|
|
CONSTRAINT `fk_sub_alarm_expr` FOREIGN KEY (`sub_expression_id`) REFERENCES `sub_alarm_definition` (`id`)
|
|
);
|
|
|
|
DROP TABLE IF EXISTS `schema_migrations`;
|
|
CREATE TABLE `schema_migrations` (
|
|
`version` varchar(255) NOT NULL,
|
|
UNIQUE KEY `unique_schema_migrations` (`version`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
|
|
CREATE USER 'notification'@'%' IDENTIFIED BY 'password';
|
|
GRANT SELECT ON mon.* TO 'notification'@'%';
|
|
CREATE USER 'notification'@'localhost' IDENTIFIED BY 'password';
|
|
GRANT SELECT ON mon.* TO 'notification'@'localhost';
|
|
|
|
CREATE USER 'monapi'@'%' IDENTIFIED BY 'password';
|
|
GRANT ALL ON mon.* TO 'monapi'@'%';
|
|
CREATE USER 'monapi'@'localhost' IDENTIFIED BY 'password';
|
|
GRANT ALL ON mon.* TO 'monapi'@'localhost';
|
|
|
|
CREATE USER 'thresh'@'%' IDENTIFIED BY 'password';
|
|
GRANT ALL ON mon.* TO 'thresh'@'%';
|
|
CREATE USER 'thresh'@'localhost' IDENTIFIED BY 'password';
|
|
GRANT ALL ON mon.* TO 'thresh'@'localhost';
|
|
|
|
SET foreign_key_checks = 1;
|