v5.9.5
版本发布时间: 2022-07-07 14:24:40
ccfos/nightingale最新发布版本:v7.4.1(2024-09-25 15:15:14)
What's Changed
- Add recording rule by @tripitakav in https://github.com/ccfos/nightingale/pull/1015
- add community guide and governance docs (draft) by @laiwei in https://github.com/ccfos/nightingale/pull/1019
- refactor recording rule and add field disabled by @UlricQin in https://github.com/ccfos/nightingale/pull/1022
- fix: fix event api for service by @tanxiao1990 in https://github.com/ccfos/nightingale/pull/1026
- report sample queue size by @UlricQin in https://github.com/ccfos/nightingale/pull/1027
- add rulename as mute field @tripitakav in https://github.com/ccfos/nightingale/pull/1025
- fix get clusters by api by @710leo in https://github.com/ccfos/nightingale/pull/1030
- auto release with github action by @kongfei605 in https://github.com/ccfos/nightingale/pull/1032
New Contributors
- @tripitakav made their first contribution in https://github.com/ccfos/nightingale/pull/1015
- @kongfei605 made their first contribution in https://github.com/ccfos/nightingale/pull/1032
Full Changelog: https://github.com/ccfos/nightingale/compare/v5.9.4...v5.9.5
SQL
insert into `role_operation`(role_name, operation) values('Standard', '/recording-rules');
insert into `role_operation`(role_name, operation) values('Standard', '/recording-rules/add');
insert into `role_operation`(role_name, operation) values('Standard', '/recording-rules/put');
insert into `role_operation`(role_name, operation) values('Standard', '/recording-rules/del');
CREATE TABLE `recording_rule` (
`id` bigint unsigned not null auto_increment,
`group_id` bigint not null default '0' comment 'group_id',
`cluster` varchar(128) not null,
`name` varchar(255) not null comment 'new metric name',
`note` varchar(255) not null comment 'rule note',
`disabled` tinyint(1) not null comment '0:enabled 1:disabled',
`prom_ql` varchar(8192) not null comment 'promql',
`prom_eval_interval` int not null comment 'evaluate interval',
`append_tags` varchar(255) default '' comment 'split by space: service=n9e mod=api',
`create_at` bigint default '0',
`create_by` varchar(64) default '',
`update_at` bigint default '0',
`update_by` varchar(64) default '',
PRIMARY KEY (`id`),
KEY `group_id` (`group_id`),
KEY `update_at` (`update_at`)
) ENGINE=InnoDB DEFAULT CHARSET = utf8mb4;
1、 checksums.txt 192B
2、 n9e-v5.9.5-linux-amd64.tar.gz 14.04MB
3、 n9e-v5.9.5-linux-arm64.tar.gz 13.36MB