[monitor] 监控增删改查接口定义

This commit is contained in:
tomsun28
2021-11-14 14:02:00 +08:00
parent 0c568d25bc
commit ed523344e4
15 changed files with 468 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ DROP TABLE IF EXISTS monitor ;
CREATE TABLE monitor
(
id bigint not null auto_increment comment '监控ID',
jobId bigint not null comment '监控对应下发的任务ID',
job_id bigint not null comment '监控对应下发的任务ID',
name varchar(100) not null comment '监控的名称',
app varchar(100) not null comment '监控的类型:linux,mysql,jvm...',
host varchar(100) not null comment '监控的对端host:ipv4,ipv6,域名',