-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to capture pprof profiles to the event-handler (#44738)
SIGUSR1 can now be used to trigger capturing various pprof profiles from any integrations that opt in to providing the support. At the moment only the event-handler implements handling the signal. It stores all profiles under `<storage_dir>/profiles`.
- Loading branch information
1 parent
6b2d927
commit 514c4cf
Showing
3 changed files
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
// Teleport | ||
// Copyright (C) 2024 Gravitational, Inc. | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU Affero General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU Affero General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Affero General Public License | ||
// along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
package diagnostics | ||
|
||
import ( | ||
"os" | ||
"path/filepath" | ||
"runtime" | ||
"runtime/pprof" | ||
runtimetrace "runtime/trace" | ||
"strconv" | ||
"time" | ||
|
||
"github.com/gravitational/trace" | ||
"github.com/sirupsen/logrus" | ||
) | ||
|
||
// Profile captures various Go pprof profiles and writes | ||
// them to the profivided directory. All profiles are prefixed | ||
// with the same epoch time so that profiles can easily be associated | ||
// as being captured from the same call. | ||
func Profile(dir string) error { | ||
if err := os.MkdirAll(dir, 0o755); err != nil { | ||
return trace.Wrap(err, "creating profile directory %v", dir) | ||
} | ||
|
||
timestamp := strconv.FormatInt(time.Now().UnixMilli(), 10) | ||
traceFile, err := os.Create(filepath.Join(dir, timestamp+"-trace.profile")) | ||
if err != nil { | ||
return trace.Wrap(err, "creating trace proile file") | ||
} | ||
defer traceFile.Close() | ||
|
||
cpuFile, err := os.Create(filepath.Join(dir, timestamp+"-cpu.profile")) | ||
if err != nil { | ||
return trace.Wrap(err, "creating cpu proile file") | ||
} | ||
defer cpuFile.Close() | ||
|
||
heapFile, err := os.Create(filepath.Join(dir, timestamp+"-heap.profile")) | ||
if err != nil { | ||
return trace.Wrap(err, "creating heap proile file") | ||
} | ||
defer heapFile.Close() | ||
|
||
goroutineFile, err := os.Create(filepath.Join(dir, timestamp+"-goroutine.profile")) | ||
if err != nil { | ||
return trace.Wrap(err, "creating goroutine proile file") | ||
} | ||
defer goroutineFile.Close() | ||
|
||
blockFile, err := os.Create(filepath.Join(dir, timestamp+"-block.profile")) | ||
if err != nil { | ||
return trace.Wrap(err, "creating block proile file") | ||
} | ||
defer blockFile.Close() | ||
|
||
logrus.Debugf("capturing trace profile to %s", traceFile.Name()) | ||
|
||
if err := runtimetrace.Start(traceFile); err != nil { | ||
return trace.Wrap(err, "capturing trace profile") | ||
} | ||
|
||
logrus.Debugf("capturing cpu profile to %s", cpuFile.Name()) | ||
|
||
if err := pprof.StartCPUProfile(cpuFile); err != nil { | ||
return trace.Wrap(err, "capturing cpu profile") | ||
} | ||
|
||
defer func() { | ||
logrus.Debugf("capturing goroutine profile to %s", cpuFile.Name()) | ||
|
||
if err := pprof.Lookup("goroutine").WriteTo(goroutineFile, 0); err != nil { | ||
logrus.WithError(err).Warn("failed to capture goroutine profile") | ||
} | ||
|
||
logrus.Debugf("capturing block profile to %s", cpuFile.Name()) | ||
|
||
if err := pprof.Lookup("block").WriteTo(blockFile, 0); err != nil { | ||
logrus.WithError(err).Warn("failed to capture block profile") | ||
} | ||
|
||
runtime.GC() | ||
|
||
logrus.Debugf("capturing heap profile to %s", cpuFile.Name()) | ||
|
||
if err := pprof.WriteHeapProfile(heapFile); err != nil { | ||
logrus.WithError(err).Warn("failed to capture heap profile") | ||
} | ||
|
||
pprof.StopCPUProfile() | ||
runtimetrace.Stop() | ||
}() | ||
|
||
<-time.After(30 * time.Second) | ||
return nil | ||
} |