feat: pprof

This commit is contained in:
tobyxdd 2023-08-05 12:07:22 -07:00
parent 3b4af8035b
commit 531b23baa4
3 changed files with 39 additions and 8 deletions

View file

@ -74,7 +74,8 @@ def get_app_commit():
if not app_commit:
try:
app_commit = (
subprocess.check_output(["git", "rev-parse", "HEAD"]).decode().strip()
subprocess.check_output(
["git", "rev-parse", "HEAD"]).decode().strip()
)
except Exception:
app_commit = "Unknown"
@ -85,7 +86,8 @@ def get_app_platforms():
platforms = os.environ.get("HY_APP_PLATFORMS")
if not platforms:
d_os = subprocess.check_output(["go", "env", "GOOS"]).decode().strip()
d_arch = subprocess.check_output(["go", "env", "GOARCH"]).decode().strip()
d_arch = subprocess.check_output(
["go", "env", "GOARCH"]).decode().strip()
return [(d_os, d_arch)]
result = []
@ -100,7 +102,7 @@ def get_app_platforms():
return result
def cmd_build(release=False):
def cmd_build(pprof=False, release=False):
if not check_build_env():
return
@ -116,7 +118,8 @@ def cmd_build(release=False):
"-X",
APP_SRC_CMD_PKG + ".appDate=" + app_date,
"-X",
APP_SRC_CMD_PKG + ".appType=" + ("release" if release else "dev"),
APP_SRC_CMD_PKG + ".appType=" +
("release" if release else "dev") + ("-pprof" if pprof else ""),
"-X",
APP_SRC_CMD_PKG + ".appCommit=" + app_commit,
]
@ -143,6 +146,9 @@ def cmd_build(release=False):
"-ldflags",
" ".join(ldflags),
]
if pprof:
cmd.append("-tags")
cmd.append("pprof")
if release:
cmd.append("-trimpath")
cmd.append(APP_SRC_DIR)
@ -235,9 +241,10 @@ def main():
# Build
p_build = p_cmd.add_parser("build", help="Build the app")
p_build.add_argument(
"-r", "--release", action="store_true", help="Build a release version"
)
p_build.add_argument("-p", "--pprof", action="store_true",
help="Build with pprof enabled")
p_build.add_argument("-r", "--release", action="store_true",
help="Build a release version")
# Format
p_cmd.add_parser("format", help="Format the code")
@ -256,7 +263,7 @@ def main():
if args.command == "run":
cmd_run(args.args)
elif args.command == "build":
cmd_build(args.release)
cmd_build(args.pprof, args.release)
elif args.command == "format":
cmd_format()
elif args.command == "mockgen":