2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2020-02-05 22:16:58 +00:00
|
|
|
|
2020-10-19 14:56:23 +00:00
|
|
|
package logger
|
2020-02-05 22:16:58 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"runtime"
|
|
|
|
)
|
|
|
|
|
2020-02-11 23:21:24 +00:00
|
|
|
// RusagePrefixLog returns a Logf func wrapping the provided logf func that adds
|
|
|
|
// a prefixed log message to each line with the current binary memory usage
|
|
|
|
// and max RSS.
|
2020-10-19 14:56:23 +00:00
|
|
|
func RusagePrefixLog(logf Logf) Logf {
|
2022-03-16 23:27:57 +00:00
|
|
|
return func(f string, argv ...any) {
|
2020-02-05 22:16:58 +00:00
|
|
|
var m runtime.MemStats
|
|
|
|
runtime.ReadMemStats(&m)
|
|
|
|
goMem := float64(m.HeapInuse+m.StackInuse) / (1 << 20)
|
|
|
|
maxRSS := rusageMaxRSS()
|
|
|
|
pf := fmt.Sprintf("%.1fM/%.1fM %s", goMem, maxRSS, f)
|
|
|
|
logf(pf, argv...)
|
|
|
|
}
|
|
|
|
}
|