mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-04 02:01:07 +01:00 
			
		
		
		
	* update docs * plugins: use plugin specific logging Hooking up pkg/log also changed NewWithPlugin to just take a string instead of a plugin.Handler as that is more flexible and for instance the Root "plugin" doesn't implement it fully. Same logging from the reload plugin: .:1043 2018/04/22 08:56:37 [INFO] CoreDNS-1.1.1 2018/04/22 08:56:37 [INFO] linux/amd64, go1.10.1, CoreDNS-1.1.1 linux/amd64, go1.10.1, 2018/04/22 08:56:37 [INFO] plugin/reload: Running configuration MD5 = ec4c9c55cd19759ea1c46b8c45742b06 2018/04/22 08:56:54 [INFO] Reloading 2018/04/22 08:56:54 [INFO] plugin/reload: Running configuration MD5 = 9e2bfdd85bdc9cceb740ba9c80f34c1a 2018/04/22 08:56:54 [INFO] Reloading complete * update docs * better doc
		
			
				
	
	
		
			49 lines
		
	
	
		
			852 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			852 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Package pprof implement a debug endpoint for getting profiles using the
 | 
						|
// go pprof tooling.
 | 
						|
package pprof
 | 
						|
 | 
						|
import (
 | 
						|
	"net"
 | 
						|
	"net/http"
 | 
						|
	pp "net/http/pprof"
 | 
						|
)
 | 
						|
 | 
						|
type handler struct {
 | 
						|
	addr string
 | 
						|
	ln   net.Listener
 | 
						|
	mux  *http.ServeMux
 | 
						|
}
 | 
						|
 | 
						|
func (h *handler) Startup() error {
 | 
						|
	ln, err := net.Listen("tcp", h.addr)
 | 
						|
	if err != nil {
 | 
						|
		log.Errorf("Failed to start pprof handler: %s", err)
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	h.ln = ln
 | 
						|
 | 
						|
	h.mux = http.NewServeMux()
 | 
						|
	h.mux.HandleFunc(path+"/", pp.Index)
 | 
						|
	h.mux.HandleFunc(path+"/cmdline", pp.Cmdline)
 | 
						|
	h.mux.HandleFunc(path+"/profile", pp.Profile)
 | 
						|
	h.mux.HandleFunc(path+"/symbol", pp.Symbol)
 | 
						|
	h.mux.HandleFunc(path+"/trace", pp.Trace)
 | 
						|
 | 
						|
	go func() {
 | 
						|
		http.Serve(h.ln, h.mux)
 | 
						|
	}()
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (h *handler) Shutdown() error {
 | 
						|
	if h.ln != nil {
 | 
						|
		return h.ln.Close()
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
const (
 | 
						|
	path = "/debug/pprof"
 | 
						|
)
 |