From f6f9b78761c6b10744198081394fa72feed42fe0 Mon Sep 17 00:00:00 2001 From: fengshuonan Date: Sun, 31 Jan 2021 22:08:43 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90monitor=E3=80=91=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E5=88=B7=E6=96=B0=E7=8A=B6=E6=80=81=E7=9A=84=E5=AE=9A=E6=97=B6?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../db/migration/V1.0_20210131_0001__add_monitor_timer.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/main/resources/db/migration/V1.0_20210131_0001__add_monitor_timer.sql diff --git a/src/main/resources/db/migration/V1.0_20210131_0001__add_monitor_timer.sql b/src/main/resources/db/migration/V1.0_20210131_0001__add_monitor_timer.sql new file mode 100644 index 00000000..d9077939 --- /dev/null +++ b/src/main/resources/db/migration/V1.0_20210131_0001__add_monitor_timer.sql @@ -0,0 +1 @@ +INSERT INTO `sys_timers`(`timer_id`, `timer_name`, `action_class`, `cron`, `job_status`, `remark`, `del_flag`, `create_time`, `create_user`, `update_time`, `update_user`) VALUES (1355878268976271362, '定时刷新服务器状态', 'cn.stylefeng.guns.modular.system.monitor.timer.SystemHardwareInfoHolder', '0/5 * * * * ? ', 1, '每30分钟执行一次,刷新服务器状态', 'N', '2021-01-31 21:59:05', 1339550467939639299, '2021-01-31 22:00:23', 1339550467939639299);