add debug option to generate full goroutine stack dump

This commit is contained in:
Chris Lu
2021-07-31 02:00:01 -07:00
parent a3290faf17
commit 0d6f45cb46
2 changed files with 13 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ package command
import (
"fmt"
"github.com/chrislusf/seaweedfs/weed/util/grace"
"net/http"
"os"
"strings"
"time"
@@ -16,6 +17,7 @@ import (
type ServerOptions struct {
cpuprofile *string
memprofile *string
debug *bool
v VolumeServerOptions
}
@@ -78,6 +80,7 @@ var (
func init() {
serverOptions.cpuprofile = cmdServer.Flag.String("cpuprofile", "", "cpu profile output file")
serverOptions.memprofile = cmdServer.Flag.String("memprofile", "", "memory profile output file")
serverOptions.debug = cmdServer.Flag.Bool("debug", false, "generate full goroutine stack dump http://localhost:6060/debug/pprof/goroutine?debug=2")
masterOptions.port = cmdServer.Flag.Int("master.port", 9333, "master server http listen port")
masterOptions.metaFolder = cmdServer.Flag.String("master.dir", "", "data directory to store meta data, default to same as -dir specified")
@@ -139,6 +142,10 @@ func init() {
func runServer(cmd *Command, args []string) bool {
if *serverOptions.debug {
go http.ListenAndServe("localhost:6060", nil)
}
util.LoadConfiguration("security", false)
util.LoadConfiguration("master", false)