2021-06-27 21:59:06 +08:00
|
|
|
package metrics
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/configloaders"
|
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
|
|
|
"github.com/iwind/TeaGo"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
|
|
|
server.
|
|
|
|
|
Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeServer)).
|
|
|
|
|
Data("teaMenu", "servers").
|
|
|
|
|
Data("teaSubMenu", "metric").
|
|
|
|
|
Prefix("/servers/metrics").
|
|
|
|
|
Get("", new(IndexAction)).
|
|
|
|
|
GetPost("/createPopup", new(CreatePopupAction)).
|
|
|
|
|
GetPost("/update", new(UpdateAction)).
|
|
|
|
|
Post("/delete", new(DeleteAction)).
|
|
|
|
|
Get("/item", new(ItemAction)).
|
2021-06-30 19:59:59 +08:00
|
|
|
Get("/stats", new(StatsAction)).
|
2021-06-27 21:59:06 +08:00
|
|
|
EndAll()
|
|
|
|
|
})
|
|
|
|
|
}
|