pprof configuration support, #382

This commit is contained in:
ffdfgdfg
2020-02-09 16:54:40 +08:00
parent 704bba92d1
commit 533dd083fe
9 changed files with 49 additions and 0 deletions

View File

@@ -145,6 +145,8 @@ func dealCommon(s string) *CommonConfig {
c.Client.MaxConn = common.GetIntNoErrByStr(item[1])
case "remark":
c.Client.Remark = item[1]
case "pprof_addr":
common.InitPProfFromArg(item[1])
}
}
return c