feat: 添加定时任务性能数据上报/资源数据上报

This commit is contained in:
TsMask
2024-03-19 11:25:01 +08:00
parent ba6824e623
commit c8c33d4dff
6 changed files with 172 additions and 7 deletions

View File

@@ -124,6 +124,8 @@ func initModulesRoute(app *gin.Engine) {
networkelement.Setup(app)
// 网元数据模块
networkdata.Setup(app)
// 北向模块 - 中国星网
nmscxy.Setup(app)
// 跟踪模块
trace.Setup(app)
// 图表模块
@@ -134,6 +136,4 @@ func initModulesRoute(app *gin.Engine) {
crontask.Setup(app)
// 监控模块 - 含调度处理加入队列,放最后
monitor.Setup(app)
// 北向模块 - 中国星网
nmscxy.Setup(app)
}