mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 03:25:35 +00:00
703d789005
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
46 lines
927 B
Go
46 lines
927 B
Go
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Package logheap logs a heap pprof profile.
|
|
package logheap
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"io"
|
|
"os"
|
|
"runtime"
|
|
"runtime/pprof"
|
|
"time"
|
|
)
|
|
|
|
// LogHeap writes a JSON logtail record with the base64 heap pprof to
|
|
// os.Stderr.
|
|
func LogHeap() {
|
|
logHeap(os.Stderr)
|
|
}
|
|
|
|
type logTail struct {
|
|
ClientTime string `json:"client_time"`
|
|
}
|
|
|
|
type pprofRec struct {
|
|
Heap []byte `json:"heap,omitempty"`
|
|
}
|
|
|
|
type logLine struct {
|
|
LogTail logTail `json:"logtail"`
|
|
Pprof pprofRec `json:"pprof"`
|
|
}
|
|
|
|
func logHeap(w io.Writer) error {
|
|
runtime.GC()
|
|
buf := new(bytes.Buffer)
|
|
pprof.WriteHeapProfile(buf)
|
|
return json.NewEncoder(w).Encode(logLine{
|
|
LogTail: logTail{ClientTime: time.Now().Format(time.RFC3339Nano)},
|
|
Pprof: pprofRec{Heap: buf.Bytes()},
|
|
})
|
|
}
|