MTRAgent管理模块、MTR探测策略、服务器管理添加标签配置

This commit is contained in:
康冉冉
2025-11-25 18:34:08 +08:00
parent b641f7a31f
commit ff6f4ca869
15 changed files with 316 additions and 106 deletions
+25
View File
@@ -966,6 +966,23 @@ export function dockerSpeedEcharts(data) {
data: data
})
}
// 添加标签
export function addRemark(data) {
return request({
url: '/system/registration/addRemark',
method: 'post',
data: data
})
}
// 修改标签
export function updateRemark(data) {
return request({
url: '/system/registration/updateRemark',
method: 'post',
data: data
})
}
/** ----------------告警日志 ------------ */
// 查询列表
@@ -1188,3 +1205,11 @@ export function delMtrPolicy(Ids) {
method: 'delete'
})
}
// 相关Ip查询
export function networkInterList(data) {
return request({
url: '/rocketmq/networkInterface/list',
method: 'post',
data: data
})
}