Beego/admin.go

81 lines
1.8 KiB
Go
Raw Normal View History

package beego
import (
"fmt"
2013-11-20 13:17:49 +00:00
"github.com/astaxie/beego/toolbox"
"net/http"
2013-11-15 10:08:53 +00:00
"time"
)
var BeeAdminApp *AdminApp
2013-11-15 10:08:53 +00:00
//func MyFilterMonitor(method, requestPath string, t time.Duration) bool {
// if method == "POST" {
// return false
// }
// if t.Nanoseconds() < 100 {
// return false
// }
// if strings.HasPrefix(requestPath, "/astaxie") {
// return false
// }
// return true
//}
//beego.FilterMonitorFunc = MyFilterMonitor
var FilterMonitorFunc func(string, string, time.Duration) bool
func init() {
BeeAdminApp = &AdminApp{
routers: make(map[string]http.HandlerFunc),
}
BeeAdminApp.Route("/", AdminIndex)
2013-11-15 10:08:53 +00:00
BeeAdminApp.Route("/qps", QpsIndex)
BeeAdminApp.Route("/prof", ProfIndex)
2013-11-20 13:17:49 +00:00
BeeAdminApp.Route("/healthcheck", toolbox.Healthcheck)
BeeAdminApp.Route("/task", toolbox.TaskStatus)
BeeAdminApp.Route("/runtask", toolbox.RunTask)
2013-11-15 10:08:53 +00:00
FilterMonitorFunc = func(string, string, time.Duration) bool { return true }
}
func AdminIndex(rw http.ResponseWriter, r *http.Request) {
rw.Write([]byte("Welcome to Admin Dashboard"))
}
2013-11-15 10:08:53 +00:00
func QpsIndex(rw http.ResponseWriter, r *http.Request) {
2013-11-20 13:17:49 +00:00
toolbox.StatisticsMap.GetMap(rw)
2013-11-15 10:08:53 +00:00
}
2013-11-15 10:08:53 +00:00
func ProfIndex(rw http.ResponseWriter, r *http.Request) {
r.ParseForm()
command := r.Form.Get("command")
if command != "" {
2013-11-20 13:17:49 +00:00
toolbox.ProcessInput(command, rw)
2013-11-15 10:08:53 +00:00
} else {
rw.Write([]byte("request url like '/prof?command=lookup goroutine'"))
}
}
type AdminApp struct {
routers map[string]http.HandlerFunc
}
func (admin *AdminApp) Route(pattern string, f http.HandlerFunc) {
admin.routers[pattern] = f
}
func (admin *AdminApp) Run() {
addr := AdminHttpAddr
if AdminHttpPort != 0 {
addr = fmt.Sprintf("%s:%d", AdminHttpAddr, AdminHttpPort)
}
for p, f := range admin.routers {
http.Handle(p, f)
}
err := http.ListenAndServe(addr, nil)
if err != nil {
BeeLogger.Critical("Admin ListenAndServe: ", err)
}
}