Re: [go-nuts] go tool trace: --> filtering/modifying

2018-05-25 Thread Neven Miculinić
Hey, in the end I've used opencensus which has the same features as go's spans, but it's designed for distributed tracing. I already have multiple backend support, which supports more advanced filtering options than chrome://tracings's catapult viewer. Thanks, Neven Micul

Re: [go-nuts] go tool trace: --> filtering/modifying

2018-05-26 Thread Neven Miculinić
ining spans is beautiful. But there are non-meaninful pieces of function calls I'd ignore (( as in anonymous functions in errgroup, when everything is called the same, this doesn't help me a lot, does it? )) Thanks, Neven Miculinić On Fri, 25 May 2018 at 19:43, Hyang-Ah Hana Kim wrote:

[go-nuts] Enabling go's race detector working over SQL barrier

2019-05-05 Thread Neven Miculinić
SQL backend introduced race detector blind spot. Writes and reads aren't transparent to its ThreadSanitizer internals. Misunderstanding isolation levels and what your application does is the source of nasty race conditions. I'm thinking a bit, if there's pure go implementation of ACID complian