mirror of
https://github.com/golang/go
synced 2024-11-18 20:54:40 -07:00
a02cf32866
This can be used either to directly parse runtime.Stack output or process text that includes stack dumps, like test timeouts or panics. It includes a binary, gostacks that processes stdin to stdout replacing stack dumps in place. Change-Id: Id7b1cfd69b8aea36c66f12ec0bdf38b68cba5afb Reviewed-on: https://go-review.googlesource.com/c/tools/+/232658 Run-TryBot: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Robert Findley <rfindley@google.com>
24 lines
645 B
Go
24 lines
645 B
Go
// Copyright 2020 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// The gostacks command processes stdin looking for things that look like
|
|
// stack traces and simplifying them to make the log more readable.
|
|
// It collates stack traces that have the same path as well as simplifying the
|
|
// individual lines of the trace.
|
|
// The processed log is printed to stdout.
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"golang.org/x/tools/internal/stack"
|
|
)
|
|
|
|
func main() {
|
|
if err := stack.Process(os.Stdout, os.Stdin); err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
}
|
|
}
|