chore: enable all pprof handle on debug
This commit is contained in:
32
server/debug.go
Normal file
32
server/debug.go
Normal file
@ -0,0 +1,32 @@
|
||||
package server
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
_ "net/http/pprof"
|
||||
"runtime"
|
||||
|
||||
"github.com/alist-org/alist/v3/server/common"
|
||||
"github.com/alist-org/alist/v3/server/middlewares"
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func _pprof(g *gin.RouterGroup) {
|
||||
g.Any("/*name", gin.WrapH(http.DefaultServeMux))
|
||||
}
|
||||
|
||||
func debug(g *gin.RouterGroup) {
|
||||
g.GET("/path/*path", middlewares.Down, func(ctx *gin.Context) {
|
||||
rawPath := ctx.MustGet("path").(string)
|
||||
ctx.JSON(200, gin.H{
|
||||
"path": rawPath,
|
||||
})
|
||||
})
|
||||
g.GET("/hide_privacy", func(ctx *gin.Context) {
|
||||
common.ErrorStrResp(ctx, "This is ip: 1.1.1.1", 400)
|
||||
})
|
||||
g.GET("/gc", func(c *gin.Context) {
|
||||
runtime.GC()
|
||||
c.String(http.StatusOK, "ok")
|
||||
})
|
||||
_pprof(g.Group("/pprof"))
|
||||
}
|
Reference in New Issue
Block a user