Files
Julien Marchand a001342170 chore: Initial commit
Co-authored-by: Franklin Delehelle <franklin.delehelle@odena.eu>
Co-authored-by: Alexandre Belling <alexandrebelling8@gmail.com>
Co-authored-by: Pedro Novais <jpvnovais@gmail.com>
Co-authored-by: Roman Vaseev <4833306+Filter94@users.noreply.github.com>
Co-authored-by: Bradley Bown <bradbown@googlemail.com>
Co-authored-by: Victorien Gauch <85494462+VGau@users.noreply.github.com>
Co-authored-by: Nikolai Golub <nikolai.golub@consensys.net>
Co-authored-by: The Dark Jester <thedarkjester@users.noreply.github.com>
Co-authored-by: jonesho <81145364+jonesho@users.noreply.github.com>
Co-authored-by: Gaurav Ahuja <gauravahuja9@gmail.com>
Co-authored-by: Azam Soleimanian <49027816+Soleimani193@users.noreply.github.com>
Co-authored-by: Andrei A <andrei.alexandru@consensys.net>
Co-authored-by: Arijit Dutta <37040536+arijitdutta67@users.noreply.github.com>
Co-authored-by: Gautam Botrel <gautam.botrel@gmail.com>
Co-authored-by: Ivo Kubjas <ivo.kubjas@consensys.net>
Co-authored-by: gusiri <dreamerty@postech.ac.kr>
Co-authored-by: FlorianHuc <florian.huc@gmail.com>
Co-authored-by: Arya Tabaie <arya.pourtabatabaie@gmail.com>
Co-authored-by: Julink <julien.fontanel@consensys.net>
Co-authored-by: Bogdan Ursu <bogdanursuoffice@gmail.com>
Co-authored-by: Jakub Trąd <jakubtrad@gmail.com>
Co-authored-by: Alessandro Sforzin <alessandro.sforzin@consensys.net>
Co-authored-by: Olivier Bégassat <olivier.begassat.cours@gmail.com>
Co-authored-by: Steve Huang <97596526+stevehuangc7s@users.noreply.github.com>
Co-authored-by: bkolad <blazejkolad@gmail.com>
Co-authored-by: fadyabuhatoum1 <139905934+fadyabuhatoum1@users.noreply.github.com>
Co-authored-by: Blas Rodriguez Irizar <rodrigblas@gmail.com>
Co-authored-by: Eduardo Andrade <eduardofandrade@gmail.com>
Co-authored-by: Ivo Kubjas <tsimmm@gmail.com>
Co-authored-by: Ludcour <ludovic.courcelas@consensys.net>
Co-authored-by: m4sterbunny <harrie.bickle@consensys.net>
Co-authored-by: Alex Panayi <145478258+alexandrospanayi@users.noreply.github.com>
Co-authored-by: Diana Borbe - ConsenSys <diana.borbe@consensys.net>
Co-authored-by: ThomasPiellard <thomas.piellard@gmail.com>
2024-07-31 18:17:20 +02:00

99 lines
2.4 KiB
Go

package profiling
import (
"context"
"fmt"
"os"
"path"
"runtime"
"runtime/trace"
"time"
"github.com/sirupsen/logrus"
)
const (
_ = 1 << (10 * iota)
KiB
MiB
GiB
TiB
)
func Trace(ctx context.Context, dir string) {
LogMemUsage()
go func() {
ticker := time.NewTicker(20 * time.Second)
counter := 0
_path := path.Join(dir, fmt.Sprintf("trace-%v.out", counter))
f := startTracingInFile(_path)
fPtr := &f
defer closeTraceFile(*fPtr)
defer ticker.Stop()
for {
select {
case <-ticker.C:
closeTraceFile(f) // gracefully stops the current trace
counter++
_path := path.Join(dir, fmt.Sprintf("trace-%v.out", counter))
f = startTracingInFile(_path) // and start a new one
logrus.Debugf("Started tracing in %v", _path)
case <-ctx.Done():
// we don't want to profile anymore
logrus.Debug("Closing the tracer")
return
}
}
}()
}
// start tracing in a file
func startTracingInFile(path string) *os.File {
var f *os.File
f, err := os.Create(path)
if err != nil {
panic(err)
}
err = trace.Start(f)
if err != nil {
panic(err)
}
return f
}
// close trace
func closeTraceFile(f *os.File) {
// close the file after we stop the tracer otherwise,
// this will create a failure in the tracer
trace.Stop()
f.Close()
}
// Log memory usage
func LogMemUsage() {
go func() {
ticker := time.NewTicker(time.Second)
for {
<-ticker.C
// read information about the memory usage
var m runtime.MemStats
runtime.ReadMemStats(&m)
// {Alloc:362521518000 TotalAlloc:1076776397968 Sys:378298843400 Lookups:0 Mallocs:12131948845 Frees:8937352031 HeapAlloc:362521518000 HeapSys:362600792064 HeapIdle:28925952 HeapInuse:362571866112 HeapReleased:28925952 HeapObjects:3194596814 StackInuse:5177344 StackSys:5177344 MSpanInuse:1939723120 MSpanSys:1988836800 MCacheInuse:115200 MCacheSys:124800 BuckHashSys:1967672 GCSys:13477260696 OtherSys:224684024 NextGC:448199664696 LastGC:1690054704225362140
logrus.Debugf(
"Memory usage (GiB) : Alloc %.4f - TotalAlloc %.4f - Sys %.4f - Mallocs %.4f - Frees %.4f - HeapAlloc %.4f - NextGC %.4f",
float64(m.Alloc)/GiB, float64(m.TotalAlloc)/GiB, float64(m.Sys)/GiB, float64(m.Mallocs)/GiB, float64(m.Frees)/GiB, float64(m.HeapAlloc)/GiB, float64(m.NextGC)/GiB,
)
if m.Alloc > 800_000_000_000 {
logrus.Panicf("Out of memory") // the panic gives a chance to
}
}
}()
}