feature: Add profiling documentation for backends based on BackendUtil.

This commit is contained in:
Tera << 8 2025-01-10 16:23:26 -05:00
parent 356cfb8dca
commit 0efda4b283
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
4 changed files with 112 additions and 1 deletions

View file

@ -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 {