fix(agent): Ensure import of required package for pprof support (#15054)
Co-authored-by: Josh Powers <powersj@fastmail.com>
This commit is contained in:
parent
4303360442
commit
6cd4821b90
|
|
@ -3,6 +3,7 @@ package main
|
|||
import (
|
||||
"log"
|
||||
"net/http"
|
||||
_ "net/http/pprof" //nolint:gosec // Import for pprof, only enabled via CLI flag
|
||||
"strings"
|
||||
"time"
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue