feat: add profiler
parent
76665bed73
commit
b3769056e7
|
@ -13,6 +13,7 @@
|
||||||
# Go
|
# Go
|
||||||
coverage.out
|
coverage.out
|
||||||
vendor
|
vendor
|
||||||
|
*.prof
|
||||||
|
|
||||||
# GoReleaser
|
# GoReleaser
|
||||||
dist
|
dist
|
||||||
|
|
|
@ -55,7 +55,7 @@ func (a *action) Run(c *cli.Context) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
if a.flags.profiler {
|
if a.flags.profiler {
|
||||||
f, err := os.Create("cpuprofile")
|
f, err := os.Create("cpu.prof")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("os: failed to create: %w", err)
|
return fmt.Errorf("os: failed to create: %w", err)
|
||||||
}
|
}
|
||||||
|
@ -84,7 +84,7 @@ func (a *action) Run(c *cli.Context) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
if a.flags.profiler {
|
if a.flags.profiler {
|
||||||
f, err := os.Create("memprofile")
|
f, err := os.Create("mem.prof")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("os: failed to create: %w", err)
|
return fmt.Errorf("os: failed to create: %w", err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue