v5.11.3
前端变更
- feat: 添加告警引擎管理页面
- feat: 告警屏蔽规则支持编辑修改和是否启用 @SunnyBoy-WYH
- refactor: 告警规则生效时间范围调整为两个时间选择器,解决之前开始时间不能大于结束时间的问题
- refactor: 监控大盘变量管理页面重构
- feat: 新增 custom、constant 类型
- refactor: 将列表和编辑页面拆分
- refactor: 监控大盘升级
- feat: 蜂窝图可设置选择显示内容(名称和值、名称、值)
- feat: 折线图 Y 轴支持 logarithmic scale
- feat: stat 图可通过阈值设置来映射颜色(valueMappings 的设置也生效并且权重高于阈值设置)
- refactor: 折线图起止时间调整为查询的时间范围(之前是返回数据的时间范围)
- refactor: 监控大盘图表 PromQL 输入框优化,解决未完成输入就触发请求
- fix: 修复表格图表某些显示模式下无法排序问题
- fix: 修复 stat 图在编辑状态下切换颜色模式对应的视图显示有误问题
- fix: 修复即时查询 Graph 模式相同的 ql 无法再次触发查询最新时间数据问题
后端变更
- fix: alert mute clean by @710leo in #1140
- feat: compatible with redis4 to 7 by @tanxiao1990 in #1141
- docs: pg init sql by @tanxiao1990 in #1142
- feat: alert-mute support edit and disable by @SunnyBoy-WYH in #1144
- feat: alert_subscribe add name and disabled by @tanxiao1990 in #1145
Full Changelog: v5.11.2...v5.11.3
需要变更的SQL
alter table alert_mute add column `note` varchar(1024) not null default '' after `prod`;
alter table alert_mute add column `disabled` tinyint(1) not null default 0 comment '0:enabled 1:disabled' after `etime`;
alter table alert_mute add column `update_at` bigint not null default 0 after `create_by`;
alter table alert_mute add column `update_by` varchar(64) not null default '' after `update_at`;
alter table alert_subscribe add column `name` varchar(255) not null default '' after `id`;
alter table alert_subscribe add column `disabled` tinyint(1) not null default 0 comment '0:enabled 1:disabled' after `name`;