2023-04-26 12:45:57 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2023-04-19 17:02:02 +00:00
|
|
|
"runtime"
|
|
|
|
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
2023-04-26 12:45:57 +00:00
|
|
|
httputil "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/http"
|
2023-04-19 17:02:02 +00:00
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
|
|
|
type pprofComponent struct {
|
|
|
|
httpComponent
|
|
|
|
blockRate int
|
|
|
|
mutexRate int
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
pprofBlockRateKey = "pprof.block_rate"
|
|
|
|
pprofMutexRateKey = "pprof.mutex_rate"
|
2023-04-26 12:45:57 +00:00
|
|
|
)
|
|
|
|
|
2023-04-19 17:02:02 +00:00
|
|
|
func newPprofComponent() *pprofComponent {
|
|
|
|
return &pprofComponent{
|
|
|
|
httpComponent: httpComponent{
|
|
|
|
name: "pprof",
|
|
|
|
handler: httputil.Handler(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *pprofComponent) init() {
|
|
|
|
c.httpComponent.init()
|
|
|
|
|
|
|
|
if c.enabled {
|
|
|
|
c.blockRate = cfg.GetInt(pprofBlockRateKey)
|
|
|
|
c.mutexRate = cfg.GetInt(pprofMutexRateKey)
|
|
|
|
runtime.SetBlockProfileRate(c.blockRate)
|
|
|
|
runtime.SetMutexProfileFraction(c.mutexRate)
|
|
|
|
} else {
|
|
|
|
c.blockRate = 0
|
|
|
|
c.mutexRate = 0
|
|
|
|
runtime.SetBlockProfileRate(0)
|
|
|
|
runtime.SetMutexProfileFraction(0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *pprofComponent) needReload() bool {
|
|
|
|
blockRate := cfg.GetInt(pprofBlockRateKey)
|
|
|
|
mutexRate := cfg.GetInt(pprofMutexRateKey)
|
|
|
|
return c.httpComponent.needReload() ||
|
|
|
|
c.enabled && (c.blockRate != blockRate || c.mutexRate != mutexRate)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *pprofComponent) reload() {
|
2024-03-11 14:55:50 +00:00
|
|
|
log.Info("reload " + c.name)
|
2023-04-19 17:02:02 +00:00
|
|
|
if c.needReload() {
|
2024-03-11 14:55:50 +00:00
|
|
|
log.Info(c.name + " config updated")
|
2023-04-19 17:02:02 +00:00
|
|
|
if err := c.shutdown(); err != nil {
|
|
|
|
log.Debug(logs.FrostFSIRCouldNotShutdownHTTPServer,
|
|
|
|
zap.String("error", err.Error()))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.init()
|
|
|
|
c.start()
|
2023-04-26 12:45:57 +00:00
|
|
|
}
|
|
|
|
}
|