mirror of https://github.com/hashicorp/boundary
chore(e2e): Added build tag for enabling pprof tracing (#5839)
* added pprof tag and make command * updated tracing readmepull/5849/head
parent
7040374b6f
commit
828148934b
@ -0,0 +1,14 @@
|
||||
// Copyright (c) HashiCorp, Inc.
|
||||
// SPDX-License-Identifier: BUSL-1.1
|
||||
|
||||
//go:build !pprof
|
||||
// +build !pprof
|
||||
|
||||
package base
|
||||
|
||||
import (
|
||||
"context"
|
||||
)
|
||||
|
||||
func StartPprof(_ context.Context) {
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
// Copyright (c) HashiCorp, Inc.
|
||||
// SPDX-License-Identifier: BUSL-1.1
|
||||
|
||||
//go:build pprof
|
||||
// +build pprof
|
||||
|
||||
package base
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"net/http"
|
||||
|
||||
"github.com/hashicorp/boundary/internal/event"
|
||||
|
||||
_ "net/http/pprof"
|
||||
)
|
||||
|
||||
func StartPprof(ctx context.Context) {
|
||||
const op = "base.StartPprof"
|
||||
go func() {
|
||||
const addr = "localhost:6060"
|
||||
event.WriteSysEvent(ctx, op, "starting pprof HTTP server", "addr", addr)
|
||||
if err := http.ListenAndServe(addr, nil); err != nil && !errors.Is(err, http.ErrServerClosed) {
|
||||
event.WriteSysEvent(ctx, op, "failed to serve pprof HTTP server", "error", err.Error())
|
||||
}
|
||||
}()
|
||||
}
|
||||
Loading…
Reference in new issue