monkit icon indicating copy to clipboard operation
monkit copied to clipboard

A flexible process data collection, metrics, monitoring, instrumentation, and tracing client library for Go

Results 4 monkit issues
Sort by recently updated
recently updated
newest added

Consider code like ```go func Foo(ctx context.Context) (err error) { defer mon.Task()(&ctx)(&err) stream := Bar(ctx) stream.RPC() stream.RPC() return nil } func Bar(ctx context.Context) (Stream) { defer mon.Task()(&ctx)(nil) return newStream(ctx) }...

Do you have a tutorial or doc to show how to integrate with zipkin? 💃

When trying to compile a simple program with monkit (version taken with `go get gopkg.in/spacemonkeygo/monkit.v2/...`), I get an error: ``` # gopkg.in/spacemonkeygo/monkit.v2/environment ../../../../gopkg.in/spacemonkeygo/monkit.v2/environment/os.go:31: undefined: proc ``` I don't see where...

text/template forces the compiler into conservative mode, which prevents code from being eliminated.