mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-14 09:14:10 +00:00
51 lines
1.0 KiB
Go
51 lines
1.0 KiB
Go
// Copyright (C) 2014 The Syncthing Authors.
|
|
//
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"runtime"
|
|
"runtime/pprof"
|
|
"syscall"
|
|
"time"
|
|
)
|
|
|
|
func init() {
|
|
if innerProcess && os.Getenv("STBLOCKPROFILE") != "" {
|
|
profiler := pprof.Lookup("block")
|
|
if profiler == nil {
|
|
panic("Couldn't find block profiler")
|
|
}
|
|
l.Debugln("Starting block profiling")
|
|
go saveBlockingProfiles(profiler)
|
|
}
|
|
}
|
|
|
|
func saveBlockingProfiles(profiler *pprof.Profile) {
|
|
runtime.SetBlockProfileRate(1)
|
|
|
|
t0 := time.Now()
|
|
for t := range time.NewTicker(20 * time.Second).C {
|
|
startms := int(t.Sub(t0).Seconds() * 1000)
|
|
|
|
fd, err := os.Create(fmt.Sprintf("block-%05d-%07d.pprof", syscall.Getpid(), startms))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
err = profiler.WriteTo(fd, 0)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
err = fd.Close()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
}
|
|
}
|