New blog article!
Detecting goroutine leaks with DTrace: https://gaultier.github.io/blog/detecting_goroutine_leaks_with_dtrace.html
New blog article!
Detecting goroutine leaks with DTrace: https://gaultier.github.io/blog/detecting_goroutine_leaks_with_dtrace.html
@ahl @bcantrill Thanks for not waiting until after your break to post it, that was a doozy.
Listeners should note this mentions use of #dtrace not just through its anonymous tracing feature, but in fact through its speculative tracing feature as well.
Starting to get back into illumos/arm64. Current weekend project is getting DTrace working. Some initial progress:
# dtrace -n 'profile-997{@[stack()] = count();}' | tail
dtrace: description 'profile-997' matched 1 probe
genunix`taskq_thread+0x2e8
genunix`thread_exit
6
0xf9400e80
391
0xd53b4221
genunix`thread_exit
3779
Working fbt provider will be a bit harder...
And another blog article, once again about Go and DTrace:
https://gaultier.github.io/blog/go_dtrace_see_all_network_traffic.html
#dtrace #golang
I just wrote another Go + DTrace blog article!
This time: Are my SQL files read at build time or run time?
https://gaultier.github.io/blog/are_my_sql_files_read_at_build_time_or_run_time.html