feat: 网元信令跟踪功能

This commit is contained in:
TsMask
2025-04-22 11:43:17 +08:00
parent bcb94ae9e7
commit 00c20df133
12 changed files with 1655 additions and 945 deletions

View File

@@ -62,3 +62,18 @@ export function packetKeep(taskNo: string, duration: number = 120) {
data: { taskNo, duration },
});
}
/**
* 信令跟踪文件
* @param taskNo 对象
* @returns object
*/
export function packetPCAPFile(taskNo: string) {
return request({
url: '/trace/packet/filePull',
method: 'get',
params: { taskNo },
responseType: 'blob',
timeout: 680_000,
});
}