 2ce8e18bab
			
		
	
	2ce8e18bab
	
	
	
		
			
			* centralise config for listeners to use same config system everywhere Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> #3360 * add docs Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
		
			
				
	
	
		
			27 lines
		
	
	
		
			737 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			737 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package debug
 | |
| 
 | |
| import (
 | |
| 	"net/http"
 | |
| 	"net/http/pprof"
 | |
| 	"os"
 | |
| 	"strings"
 | |
| 
 | |
| 	log "github.com/sirupsen/logrus"
 | |
| 	"goauthentik.io/internal/config"
 | |
| )
 | |
| 
 | |
| func EnableDebugServer() {
 | |
| 	l := log.WithField("logger", "authentik.go_debugger")
 | |
| 	if deb := os.Getenv("AUTHENTIK_DEBUG"); strings.ToLower(deb) != "true" {
 | |
| 		l.Info("not enabling debug server, set `AUTHENTIK_DEBUG` to `true` to enable it.")
 | |
| 		return
 | |
| 	}
 | |
| 	h := http.NewServeMux()
 | |
| 	h.HandleFunc("/debug/pprof/", pprof.Index)
 | |
| 	h.HandleFunc("/debug/pprof/cmdline", pprof.Cmdline)
 | |
| 	h.HandleFunc("/debug/pprof/profile", pprof.Profile)
 | |
| 	h.HandleFunc("/debug/pprof/symbol", pprof.Symbol)
 | |
| 	h.HandleFunc("/debug/pprof/trace", pprof.Trace)
 | |
| 	l.Println(http.ListenAndServe(config.Get().Listen.Debug, nil))
 | |
| }
 |