2018-02-19 22:24:10 +00:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2017-03-10 10:58:25 +00:00
|
|
|
package debug
|
2016-12-17 13:53:38 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http/pprof"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
// IndexHandler will pass the call from /debug/pprof to pprof
|
|
|
|
func IndexHandler() gin.HandlerFunc {
|
|
|
|
return func(c *gin.Context) {
|
|
|
|
pprof.Index(c.Writer, c.Request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// HeapHandler will pass the call from /debug/pprof/heap to pprof
|
|
|
|
func HeapHandler() gin.HandlerFunc {
|
|
|
|
return func(c *gin.Context) {
|
|
|
|
pprof.Handler("heap").ServeHTTP(c.Writer, c.Request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// GoroutineHandler will pass the call from /debug/pprof/goroutine to pprof
|
|
|
|
func GoroutineHandler() gin.HandlerFunc {
|
|
|
|
return func(c *gin.Context) {
|
|
|
|
pprof.Handler("goroutine").ServeHTTP(c.Writer, c.Request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// BlockHandler will pass the call from /debug/pprof/block to pprof
|
|
|
|
func BlockHandler() gin.HandlerFunc {
|
|
|
|
return func(c *gin.Context) {
|
|
|
|
pprof.Handler("block").ServeHTTP(c.Writer, c.Request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ThreadCreateHandler will pass the call from /debug/pprof/threadcreate to pprof
|
|
|
|
func ThreadCreateHandler() gin.HandlerFunc {
|
|
|
|
return func(c *gin.Context) {
|
|
|
|
pprof.Handler("threadcreate").ServeHTTP(c.Writer, c.Request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// CmdlineHandler will pass the call from /debug/pprof/cmdline to pprof
|
|
|
|
func CmdlineHandler() gin.HandlerFunc {
|
|
|
|
return func(c *gin.Context) {
|
|
|
|
pprof.Cmdline(c.Writer, c.Request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ProfileHandler will pass the call from /debug/pprof/profile to pprof
|
|
|
|
func ProfileHandler() gin.HandlerFunc {
|
|
|
|
return func(c *gin.Context) {
|
|
|
|
pprof.Profile(c.Writer, c.Request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SymbolHandler will pass the call from /debug/pprof/symbol to pprof
|
|
|
|
func SymbolHandler() gin.HandlerFunc {
|
|
|
|
return func(c *gin.Context) {
|
|
|
|
pprof.Symbol(c.Writer, c.Request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TraceHandler will pass the call from /debug/pprof/trace to pprof
|
|
|
|
func TraceHandler() gin.HandlerFunc {
|
|
|
|
return func(c *gin.Context) {
|
|
|
|
pprof.Trace(c.Writer, c.Request)
|
|
|
|
}
|
|
|
|
}
|