登录
注册
开源
企业版
高校版
搜索
帮助中心
使用条款
关于我们
开源
企业版
高校版
私有云
模力方舟
AI 队友
登录
注册
Gitee 2025 年度开源项目评选中
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
取消
前往登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
Watch
不关注
关注所有动态
仅关注版本发行动态
关注但不提醒动态
12
Star
7
Fork
47
openEuler
/
sysSentry
代码
Issues
6
Pull Requests
2
Wiki
统计
流水线
服务
JavaDoc
PHPDoc
质量分析
Jenkins for Gitee
腾讯云托管
腾讯云 Serverless
悬镜安全
阿里云 SAE
Codeblitz
SBOM
我知道了,不再自动展开
65
fix issue: ai检查算法缺少disk参数
已合并
贺有志:master
openEuler:master
贺有志
创建于 2024-10-08 15:42
克隆/下载
HTTPS
SSH
复制
下载 Email Patch
下载 Diff 文件
issue:ai检查算法缺少disk参数 ,https://gitee.com/src-openeuler/sysSentry/issues/IATHWL 设计文档:  开发自验证: 情况一:未显式指定disk参数,则默认启用系统所有磁盘。 配置: ``` [common] absolute_threshold=40 slow_io_detect_frequency=1 log_level=info # disk=default ;disk=sda,sdb,sdc ;disk=sda,sdb,sdc,default ;disk=sda ,as,default [algorithm] train_data_duration=24 train_update_duration=2 algorithm_type=n_sigma boxplot_parameter=1.5 n_sigma_parameter=3 [sliding_window] sliding_window_type=not_continuous window_size=30 window_minimum_threshold=6 ``` 日志: ``` /root/anaconda3/bin/python /home/hyz/ai_block_io2/ai_block_io.py 2024-10-09 11:50:16,990 - WARNING - [config_parser.py:92] - config of disk not found, the default value will be used. 2024-10-09 11:50:16,992 - INFO - [ai_block_io.py:58] - ai_block_io plug has found disks: ['sdf', 'sde', 'sdd', 'sdb', 'sdc', 'sda', 'nvme1n1', 'nvme0n1'] 2024-10-09 11:50:16,992 - WARNING - [ai_block_io.py:64] - you not specify any disk or use default, so ai_block_io will enable all available disk. 2024-10-09 11:50:16,993 - INFO - [ai_block_io.py:78] - start to detection follow disk and it's metric: [disk: sdf, stage: bio, io_access_type: read,metric: latency, disk: sdf, stage: bio, io_access_type: write,metric: latency, disk: sde, stage: bio, io_access_type: read,metric: latency, disk: sde, stage: bio, io_access_type: write,metric: latency, disk: sdd, stage: bio, io_access_type: read,metric: latency, disk: sdd, stage: bio, io_access_type: write,metric: latency, disk: sdb, stage: bio, io_access_type: read,metric: latency, disk: sdb, stage: bio, io_access_type: write,metric: latency, disk: sdc, stage: bio, io_access_type: read,metric: latency, disk: sdc, stage: bio, io_access_type: write,metric: latency, disk: sda, stage: bio, io_access_type: read,metric: latency, disk: sda, stage: bio, io_access_type: write,metric: latency, disk: nvme1n1, stage: bio, io_access_type: read,metric: latency, disk: nvme1n1, stage: bio, io_access_type: write,metric: latency, disk: nvme0n1, stage: bio, io_access_type: read,metric: latency, disk: nvme0n1, stage: bio, io_access_type: write,metric: latency] 2024-10-09 11:50:16,993 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdf, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,993 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdf, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,993 - INFO - [ai_block_io.py:104] - add detector: disk_name: sde, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,993 - INFO - [ai_block_io.py:104] - add detector: disk_name: sde, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,993 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdd, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,993 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdd, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,993 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdb, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,993 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdb, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,993 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdc, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,993 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdc, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,993 - INFO - [ai_block_io.py:104] - add detector: disk_name: sda, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,994 - INFO - [ai_block_io.py:104] - add detector: disk_name: sda, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,994 - INFO - [ai_block_io.py:104] - add detector: disk_name: nvme1n1, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,994 - INFO - [ai_block_io.py:104] - add detector: disk_name: nvme1n1, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,994 - INFO - [ai_block_io.py:104] - add detector: disk_name: nvme0n1, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:16,994 - INFO - [ai_block_io.py:104] - add detector: disk_name: nvme0n1, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:21,090 - INFO - [ai_block_io.py:40] - receive signal: 2 2024-10-09 11:50:21,091 - ERROR - [result.py:96] - sentryctl: client connect error 2024-10-09 11:50:21,091 - INFO - [alarm_report.py:28] - Report ai_block_io FAIL: receive signal: 2 Process finished with exit code 2 ``` 情况二:使用default参数,启用系统所有磁盘。 配置: ``` [common] absolute_threshold=40 slow_io_detect_frequency=1 log_level=info disk=default ;disk=sda,sdb,sdc ;disk=sda,sdb,sdc,default ;disk=sda ,as,default [algorithm] train_data_duration=24 train_update_duration=2 algorithm_type=n_sigma boxplot_parameter=1.5 n_sigma_parameter=3 [sliding_window] sliding_window_type=not_continuous window_size=30 window_minimum_threshold=6 ``` 日志: ``` /root/anaconda3/bin/python /home/hyz/ai_block_io2/ai_block_io.py 2024-10-09 11:50:47,492 - WARNING - [config_parser.py:92] - config of disk not found, the default value will be used. 2024-10-09 11:50:47,493 - INFO - [ai_block_io.py:58] - ai_block_io plug has found disks: ['sdf', 'sde', 'sdd', 'sdb', 'sdc', 'sda', 'nvme1n1', 'nvme0n1'] 2024-10-09 11:50:47,493 - WARNING - [ai_block_io.py:64] - you not specify any disk or use default, so ai_block_io will enable all available disk. 2024-10-09 11:50:47,493 - INFO - [ai_block_io.py:78] - start to detection follow disk and it's metric: [disk: sdf, stage: bio, io_access_type: read,metric: latency, disk: sdf, stage: bio, io_access_type: write,metric: latency, disk: sde, stage: bio, io_access_type: read,metric: latency, disk: sde, stage: bio, io_access_type: write,metric: latency, disk: sdd, stage: bio, io_access_type: read,metric: latency, disk: sdd, stage: bio, io_access_type: write,metric: latency, disk: sdb, stage: bio, io_access_type: read,metric: latency, disk: sdb, stage: bio, io_access_type: write,metric: latency, disk: sdc, stage: bio, io_access_type: read,metric: latency, disk: sdc, stage: bio, io_access_type: write,metric: latency, disk: sda, stage: bio, io_access_type: read,metric: latency, disk: sda, stage: bio, io_access_type: write,metric: latency, disk: nvme1n1, stage: bio, io_access_type: read,metric: latency, disk: nvme1n1, stage: bio, io_access_type: write,metric: latency, disk: nvme0n1, stage: bio, io_access_type: read,metric: latency, disk: nvme0n1, stage: bio, io_access_type: write,metric: latency] 2024-10-09 11:50:47,493 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdf, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,493 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdf, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,493 - INFO - [ai_block_io.py:104] - add detector: disk_name: sde, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,493 - INFO - [ai_block_io.py:104] - add detector: disk_name: sde, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,493 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdd, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,493 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdd, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,493 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdb, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,493 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdb, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,493 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdc, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,494 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdc, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,494 - INFO - [ai_block_io.py:104] - add detector: disk_name: sda, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,494 - INFO - [ai_block_io.py:104] - add detector: disk_name: sda, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,494 - INFO - [ai_block_io.py:104] - add detector: disk_name: nvme1n1, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,494 - INFO - [ai_block_io.py:104] - add detector: disk_name: nvme1n1, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,494 - INFO - [ai_block_io.py:104] - add detector: disk_name: nvme0n1, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:47,494 - INFO - [ai_block_io.py:104] - add detector: disk_name: nvme0n1, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:50:51,005 - INFO - [ai_block_io.py:40] - receive signal: 2 2024-10-09 11:50:51,006 - ERROR - [result.py:96] - sentryctl: client connect error 2024-10-09 11:50:51,006 - INFO - [alarm_report.py:28] - Report ai_block_io FAIL: receive signal: 2 Process finished with exit code 2 ``` 情况三:指定多块磁盘,并用逗号分隔,启用多块磁盘中存在的磁盘。 配置: ``` [common] absolute_threshold=40 slow_io_detect_frequency=1 log_level=info ; disk=default disk=sda,sdb,sdc ;disk=sda,sdb,sdc,default ;disk=sda ,as,default [algorithm] train_data_duration=24 train_update_duration=2 algorithm_type=n_sigma boxplot_parameter=1.5 n_sigma_parameter=3 [sliding_window] sliding_window_type=not_continuous window_size=30 window_minimum_threshold=6 ``` 日志: ``` /root/anaconda3/bin/python /home/hyz/ai_block_io2/ai_block_io.py 2024-10-09 11:51:21,360 - INFO - [ai_block_io.py:58] - ai_block_io plug has found disks: ['sdf', 'sde', 'sdd', 'sdb', 'sdc', 'sda', 'nvme1n1', 'nvme0n1'] 2024-10-09 11:51:21,360 - INFO - [ai_block_io.py:78] - start to detection follow disk and it's metric: [disk: sda, stage: bio, io_access_type: read,metric: latency, disk: sda, stage: bio, io_access_type: write,metric: latency, disk: sdb, stage: bio, io_access_type: read,metric: latency, disk: sdb, stage: bio, io_access_type: write,metric: latency, disk: sdc, stage: bio, io_access_type: read,metric: latency, disk: sdc, stage: bio, io_access_type: write,metric: latency] 2024-10-09 11:51:21,360 - INFO - [ai_block_io.py:104] - add detector: disk_name: sda, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:51:21,360 - INFO - [ai_block_io.py:104] - add detector: disk_name: sda, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:51:21,360 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdb, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:51:21,360 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdb, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:51:21,360 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdc, stage_name: bio, io_type_name: read, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:51:21,360 - INFO - [ai_block_io.py:104] - add detector: disk_name: sdc, stage_name: bio, io_type_name: write, metric_name: latency, threshold_type: [NSigmaThreshold, param is: 3.0], sliding_window_type: [NotContinuousSlidingWindow, window size: 30, threshold: 6] 2024-10-09 11:51:24,859 - INFO - [ai_block_io.py:40] - receive signal: 2 2024-10-09 11:51:24,860 - ERROR - [result.py:96] - sentryctl: client connect error 2024-10-09 11:51:24,860 - INFO - [alarm_report.py:28] - Report ai_block_io FAIL: receive signal: 2 Process finished with exit code 2 ``` 情况四:指定多块磁盘,并存在不存在的磁盘,则启用多块磁盘中存在的磁盘,并忽略不存在的磁盘。 配置: ``` [common] absolute_threshold=40 slow_io_detect_frequency=1 log_level=info ; disk=default ;disk=sda,sdb,sdc ;disk=sda,sdb,sdc,default disk=sda ,as,default [algorithm] train_data_duration=24 train_update_duration=2 algorithm_type=n_sigma boxplot_parameter=1.5 n_sigma_parameter=3 [sliding_window] sliding_window_type=not_continuous window_size=30 window_minimum_threshold=6 ``` 日志: ``` /root/anaconda3/bin/python /home/hyz/ai_block_io2/ai_block_io.py 2024-10-09 11:52:13,870 - INFO - [ai_block_io.py:58] - ai_block_io plug has found disks: ['sdf', 'sde', 'sdd', 'sdb', 'sdc', 'sda', 'nvme1n1', 'nvme0n1'] 2024-10-09 11:52:13,870 - WARNING - [ai_block_io.py:77] - disk:[sda ] not in available disk list, so it will be ignored. 2024-10-09 11:52:13,870 - WARNING - [ai_block_io.py:77] - disk:[as] not in available disk list, so it will be ignored. 2024-10-09 11:52:13,870 - WARNING - [ai_block_io.py:77] - disk:[default] not in available disk list, so it will be ignored. 2024-10-09 11:52:13,870 - INFO - [ai_block_io.py:78] - start to detection follow disk and it's metric: [] 2024-10-09 11:52:15,035 - INFO - [ai_block_io.py:40] - receive signal: 2 2024-10-09 11:52:15,036 - ERROR - [result.py:96] - sentryctl: client connect error 2024-10-09 11:52:15,036 - INFO - [alarm_report.py:28] - Report ai_block_io FAIL: receive signal: 2 Process finished with exit code 2 ``` 情况五:显式指定disk参数,但未指定value值,则不启用任何磁盘。 配置: ``` [common] absolute_threshold=40 slow_io_detect_frequency=1 log_level=info disk= [algorithm] train_data_duration=24 train_update_duration=2 algorithm_type=n_sigma boxplot_parameter=1.5 n_sigma_parameter=3 [sliding_window] sliding_window_type=not_continuous window_size=30 window_minimum_threshold=6 ``` 日志: ``` /root/anaconda3/bin/python /home/hyz/ai_block_io2/ai_block_io.py 2024-10-09 14:20:58,242 - WARNING - [config_parser.py:97] - you don't specify any disk. 2024-10-09 14:20:58,244 - INFO - [ai_block_io.py:58] - ai_block_io plug has found disks: ['sdf', 'sde', 'sdd', 'sdb', 'sdc', 'sda', 'nvme1n1', 'nvme0n1'] 2024-10-09 14:20:58,244 - WARNING - [ai_block_io.py:69] - please attention: conf file not specify any disk to detection, so it will not start ai block io. 2024-10-09 14:20:58,244 - INFO - [ai_block_io.py:77] - start to detection follow disk and it's metric: [] 2024-10-09 14:21:01,745 - INFO - [ai_block_io.py:40] - receive signal: 2 2024-10-09 14:21:01,747 - ERROR - [result.py:96] - sentryctl: client connect error 2024-10-09 14:21:01,747 - INFO - [alarm_report.py:28] - Report ai_block_io FAIL: receive signal: 2 Process finished with exit code 2 ``` 以上五种情况验证符合设计。
此 Pull Request 需要通过一些审核项
类型
指派人员
状态
审查
openeuler-ci-bot
已完成
(0/0人)
测试
openeuler-ci-bot
已完成
(0/0人)
怎样手动合并此 Pull Request
git checkout master
git pull https://gitee.com/hyz2024/sysSentry.git master
git push origin master
评论
36
提交
1
文件
6
检查
代码问题
0
批量操作
展开设置
折叠设置
审查
Code Owner
审查人员
hexiaowen
overweight
Monday
licihua
zhujianwei001
zhujianwei001
谢志鹏
xiezhipeng1
陈棋德
dillon_chen
Lv Ying
lvying6
bingo
hubin95
znzjugod
znzjugod
syyhao
shenyangyang01
openeuler-ci-bot
openeuler-ci-bot
未设置
最少人数
0
测试
hexiaowen
overweight
Monday
licihua
zhujianwei001
zhujianwei001
谢志鹏
xiezhipeng1
陈棋德
dillon_chen
Lv Ying
lvying6
bingo
hubin95
znzjugod
znzjugod
syyhao
shenyangyang01
openeuler-ci-bot
openeuler-ci-bot
未设置
最少人数
0
优先级
不指定
严重
主要
次要
不重要
标签
openeuler-cla/yes
lgtm
approved
ci_successful
sig/Base-service
关联 Issue
IATHWL
ai检查算法缺少disk参数
Pull Request 合并后将关闭上述关联 Issue
里程碑
未关联里程碑
参与者
(3)
1
https://gitee.com/openeuler/sysSentry.git
git@gitee.com:openeuler/sysSentry.git
openeuler
sysSentry
sysSentry
点此查找更多帮助
搜索帮助
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册