In this example, the functions called between tracer.Start()
and tracer.Stop()
are traced.
package main
import (
"fmt"
"os"
"strconv"
"github.com/nkbai/tgo/lib/tracer"
)
func fib(n int) int {
if n == 0 || n == 1 {
return n
}
return fib(n-1) + fib(n-2)
}
func main() {
tracer.SetTraceLevel(2)
tracer.Start()
var n int64
if len(os.Args) > 1 {
n, _ = strconv.ParseInt(os.Args[1], 10, 64)
}
val := fib(int(n))
fmt.Println(val)
tracer.Stop()
}
When you run the program, the trace logs are printed:
% go build fib.go
% ./fib 3
\ (#01) strconv.ParseInt(s = "3", base = 10, bitSize = 64)
|\ (#01) strconv.ParseUint(s = "3", base = 10, bitSize = 64)
|/ (#01) strconv.ParseUint() (~r3 = 3, ~r4 = nil)
/ (#01) strconv.ParseInt() (i = 3, err = nil)
\ (#01) main.fib(n = 3)
|\ (#01) main.fib(n = 2)
|/ (#01) main.fib() (~r1 = 1)
|\ (#01) main.fib(n = 1)
|/ (#01) main.fib() (~r1 = 1)
/ (#01) main.fib() (~r1 = 2)
\ (#01) fmt.Println(a = []{int(2)})
|\ (#01) fmt.Fprintln(a = -, w = -)
2
|/ (#01) fmt.Fprintln() (n = 2, err = nil)
/ (#01) fmt.Println() (n = 2, err = nil)
- As easy as print debug: just insert 1-2 line(s) to your code
- But more powerful: visually tells you what's actually going on in your code
- Works without debugging info
- It's actually important for testing. See the usage below for more details.
- Support Linux/Mac OS X
Note: supported go version is 1.10 or later.
Install the tgo
binary and its library:
go get -u github.com/nkbai/tgo/cmd/tgo
If you have an error, you may need to install Xcode Command Line Tools: xcode-select --install
Install the tgo
binary and its library:
go get -u github.com/nkbai/tgo/cmd/tgo
The tgo
binary attaches to your process using the ptrace mechanism. To enable this, run the command below:
sudo sh -c 'echo 0 > /proc/sys/kernel/yama/ptrace_scope'
If you run the program in the docker container, add the --cap-add sys_ptrace
option. For example:
docker run --cap-add sys_ptrace -it golang:1 /bin/bash
Not supported.
Basically you just need to specify the starting point with tracer.Start()
and the ending point with tracer.Stop()
.
package main
import (
"fmt"
"github.com/nkbai/tgo/lib/tracer"
)
func fib(n int) int {
if n == 0 || n == 1 {
return n
}
return fib(n-1) + fib(n-2)
}
func main() {
tracer.Start()
val := fib(3)
fmt.Println(val)
tracer.Stop()
}
When you build and run this program, you can see the function trace logs of fib()
and fmt.Println()
. Though fib()
is called recursively, only the 1st call's log is printed.
% go build simple.go
% ./simple
\ (#01) main.fib(n = 3)
/ (#01) main.fib() (~r1 = 2)
\ (#01) fmt.Println(a = []{int(2)})
2
/ (#01) fmt.Println() (n = 2, err = nil)
All the examples in this doc are available in the _examples
directory. If this example doesn't work, check the error value tracer.Start()
returns.
In this example, you may omit the the tracer.Stop()
line because tracing automatically ends when the caller function of tracer.Start()
returns.
You often need a little deeper trace logs. For example, you may want to know the functions fib()
and fmt.Println()
call internally. You can do that by adjusting the trace level with tracer.SetTraceLevel()
.
package main
import (
"fmt"
"github.com/nkbai/tgo/lib/tracer"
)
func fib(n int) int {
if n == 0 || n == 1 {
return n
}
return fib(n-1) + fib(n-2)
}
func main() {
tracer.SetTraceLevel(2)
tracer.Start()
val := fib(3)
fmt.Println(val)
tracer.Stop()
}
In this example, the trace level is 2. Because the default level is 1, now the trace logs go one level deeper.
% go build tracelevel.go
% ./tracelevel
\ (#01) main.fib(n = 3)
|\ (#01) main.fib(n = 2)
|/ (#01) main.fib() (~r1 = 1)
|\ (#01) main.fib(n = 1)
|/ (#01) main.fib() (~r1 = 1)
/ (#01) main.fib() (~r1 = 2)
\ (#01) fmt.Println(a = []{int(2)})
|\ (#01) fmt.Fprintln(a = -, w = -)
2
|/ (#01) fmt.Fprintln() (n = 2, err = nil)
/ (#01) fmt.Println() (n = 2, err = nil)
Note that the input args of fmt.Fprintln
is -
(not available) here. It's likely the debugging info are omitted due to optimization. To see the complete result, set "-gcflags=-N"
(fast, but may not complete) or "-gcflags=all=-N"
(slow, but complete) to GOFLAGS
environment variable.
% GOFLAGS="-gcflags=all=-N" go build tracelevel.go
If you run the program with go test
or go run
, debugging info, such as DWARF data, are dropped. Fortunately, tgo works even in such a case. Let's trace the test for the fib function:
package main
import (
"testing"
"github.com/nkbai/tgo/lib/tracer"
)
func TestFib(t *testing.T) {
tracer.Start()
actual := fib(3)
tracer.Stop()
if actual != 2 {
t.Errorf("wrong: %v", actual)
}
}
% go test -v fib.go fib_test.go
=== RUN TestFib
\ (#20) command-line-arguments.fib(0x3, 0x0)
/ (#20) command-line-arguments.fib() (0x3, 0x2)
--- PASS: TestFib (0.46s)
PASS
ok command-line-arguments 0.478s
Functions are traced as usual, but args are the entire args value, divided by pointer size. In this example, \ (#20) command-line-arguments.fib(0x3, 0x0)
indicates 1st input args is 0x3
and the initial return value is 0x0
. Because it's difficult to separate input args from the return args without debugging info, all args are shown in any case. Actually, this format imitates the stack trace shown in the case of panic.
If you want to show the args as usual, set "-ldflags=-w=false"
to GOFLAGS
environment variable so that the debugging info is included in the binary. For example:
% GOFLAGS="-ldflags=-w=false" go test -v fib.go fib_test.go
=== RUN TestFib
\ (#06) command-line-arguments.fib(n = 3)
/ (#06) command-line-arguments.fib() (~r1 = 2)
--- PASS: TestFib (0.55s)
PASS
ok command-line-arguments 0.570s
Note that GOFLAGS is not supported in go 1.10 or earlier.
There are some random tips:
- There are more options to change the tgo's behaviors. See the godoc for details.
- When a go routine calls
tracer.Start()
, it means only that go routine is traced. Other go routines are not affected. Similarly,tracer.Stop()
just stops the tracing of the go routine which called the Stop function. - Builtin functions are not traced. These functions are usually replaced with
runtime
package functions or assembly instructions.