1
0
mirror of https://github.com/google/gops.git synced 2024-11-24 08:22:25 +02:00
gops/main.go

145 lines
3.0 KiB
Go
Raw Normal View History

2016-11-04 07:43:04 +02:00
// Copyright 2016 The Go Authors. All rights reserved.
2016-11-04 01:56:19 +02:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Program gops is a tool to list currently running Go processes.
2016-11-03 23:01:55 +02:00
package main
import (
"bytes"
2016-11-03 23:01:55 +02:00
"fmt"
"log"
2016-11-04 07:32:46 +02:00
"os"
2017-01-02 05:54:15 +02:00
"strconv"
"strings"
"sync"
2016-11-03 23:01:55 +02:00
"github.com/google/gops/internal/objfile"
2016-11-03 23:01:55 +02:00
ps "github.com/keybase/go-ps"
)
2016-11-04 07:32:46 +02:00
const helpText = `Usage: gops is a tool to list and diagnose Go processes.
2016-11-04 08:05:56 +02:00
2017-01-02 05:54:15 +02:00
gops Lists all Go processes currently running.
gops cmd <pid> See the commands below.
2016-11-04 07:32:46 +02:00
2016-11-14 07:59:09 +02:00
Commands:
gc Runs the garbage collector and blocks until successful.
stack Prints the stack trace.
memstats Prints the garbage collection stats.
version Prints the Go version used to build the program.
2017-01-03 11:15:13 +02:00
stats Prints the vital runtime stats.
2016-11-14 07:59:09 +02:00
pprof-heap Reads the heap profile and launches "go tool pprof".
2016-11-20 23:16:04 +02:00
pprof-cpu Reads the CPU profile and launches "go tool pprof".
2016-11-14 07:59:09 +02:00
help Prints this help text.
2016-11-04 08:05:56 +02:00
2016-11-08 03:29:14 +02:00
All commands require the agent running on the Go process.
Symbol "*" indicates the process runs the agent.`
2016-11-04 07:32:46 +02:00
2016-11-04 08:05:56 +02:00
// TODO(jbd): add link that explains the use of agent.
2016-11-03 23:01:55 +02:00
func main() {
2016-11-04 07:32:46 +02:00
if len(os.Args) < 2 {
2016-11-08 03:29:14 +02:00
processes()
2016-11-04 07:32:46 +02:00
return
}
2016-11-08 03:29:14 +02:00
cmd := os.Args[1]
2016-11-12 05:55:16 +02:00
if cmd == "help" {
usage("")
}
2017-01-02 05:54:15 +02:00
if len(os.Args) < 3 {
usage("missing PID")
}
pid, err := strconv.Atoi(os.Args[2])
if err != nil {
usage("PID should be numeric")
}
2016-11-08 03:29:14 +02:00
fn, ok := cmds[cmd]
if !ok {
usage("unknown subcommand")
2016-11-04 07:32:46 +02:00
}
2016-11-08 04:04:21 +02:00
if err := fn(pid); err != nil {
2016-11-08 03:29:14 +02:00
fmt.Fprintf(os.Stderr, "%v\n", err)
os.Exit(1)
2016-11-04 07:32:46 +02:00
}
}
2016-11-08 03:29:14 +02:00
func processes() {
2016-11-03 23:01:55 +02:00
pss, err := ps.Processes()
if err != nil {
log.Fatal(err)
}
var wg sync.WaitGroup
wg.Add(len(pss))
2016-11-03 23:01:55 +02:00
for _, pr := range pss {
pr := pr
go func() {
defer wg.Done()
printIfGo(pr)
}()
2016-11-04 01:56:19 +02:00
}
wg.Wait()
2016-11-03 23:01:55 +02:00
}
// reportGo looks up the runtime.buildVersion symbol
// in the process' binary and determines if the process
// if a Go process or not. If the process is a Go process,
// it reports PID, binary name and full path of the binary.
func printIfGo(pr ps.Process) {
if pr.Pid() == 0 {
// ignore system process
return
}
path, err := pr.Path()
if err != nil {
return
}
obj, err := objfile.Open(path)
2016-11-03 23:01:55 +02:00
if err != nil {
return
2016-11-03 23:01:55 +02:00
}
defer obj.Close()
symbols, err := obj.Symbols()
if err != nil {
return
2016-11-03 23:01:55 +02:00
}
var ok bool
var agent bool
2016-11-05 03:37:04 +02:00
// TODO(jbd): find a faster way to determine Go programs.
2016-11-03 23:01:55 +02:00
for _, s := range symbols {
if s.Name == "runtime.buildVersion" {
ok = true
}
// TODO(jbd): Stat the pid file to determine if the agent is still working.
if strings.HasPrefix(s.Name, "github.com/google/gops/agent") {
agent = true
2016-11-03 23:01:55 +02:00
}
}
if ok {
buf := bytes.NewBuffer(nil)
fmt.Fprintf(buf, "%d", pr.Pid())
if agent {
fmt.Fprint(buf, "*")
}
fmt.Fprintf(buf, "\t%v\t(%v)\n", pr.Executable(), path)
buf.WriteTo(os.Stdout)
}
2016-11-03 23:01:55 +02:00
}
2016-11-04 07:32:46 +02:00
2016-11-08 03:29:14 +02:00
func usage(msg string) {
if msg != "" {
fmt.Printf("gops: %v\n", msg)
2016-11-04 07:32:46 +02:00
}
2016-11-08 03:29:14 +02:00
fmt.Fprintf(os.Stderr, "%v\n", helpText)
2016-11-04 09:55:16 +02:00
os.Exit(1)
2016-11-04 07:32:46 +02:00
}