kubo/cmd/ipfs/kubo/debug.go
2023-12-19 16:23:53 -05:00

16 lines
219 B
Go

package kubo
import (
"net/http"
"github.com/ipfs/kubo/profile"
)
func init() {
http.HandleFunc("/debug/stack",
func(w http.ResponseWriter, _ *http.Request) {
_ = profile.WriteAllGoroutineStacks(w)
},
)
}