feat: 网元状态记录内存/CPU/磁盘列表

This commit is contained in:
TsMask
2025-05-09 11:49:28 +08:00
parent 8fe41b136f
commit 774c865e97
8 changed files with 267 additions and 19 deletions

View File

@@ -84,6 +84,15 @@ func Setup(router *gin.Engine) {
)
}
// 网元状态记录信息
neStateGroup := neDataGroup.Group("/ne-state")
{
neStateGroup.GET("/list",
middleware.AuthorizeUser(nil),
controller.NewNEState.List,
)
}
// 基站状态历史记录信息 含AMF/MME
nbStateGroup := neDataGroup.Group("/nb-state")
{