feature: Add profiling documentation for backends based on BackendUtil.
This commit is contained in:
parent
356cfb8dca
commit
0efda4b283
4 changed files with 112 additions and 1 deletions
|
@ -18,9 +18,14 @@ type BackendApplicationHelper struct {
|
|||
|
||||
func (helper *BackendApplicationHelper) Start() error {
|
||||
log.Debug("BackendApplicationHelper is starting")
|
||||
err := configureAndLaunchBackgroundProfilingTasks()
|
||||
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
log.Debug("Currently waiting for Unix socket connection...")
|
||||
|
||||
var err error
|
||||
helper.socket, err = net.Dial("unix", helper.SocketPath)
|
||||
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue