Vizb - An interactive go benchmark visualizer

Benching is easy in GoLang, but I found it hard to visualize them when I had to bench with different libs, with my lib varmq

Since reading benchmarks without any visualization isn’t exactly pleasing.

I searched for various visualization tools, but couldn’t find one that suited my needs

So, in short, I started building a new tool that will generate an HTML canvas from the bench output in a single command.

go test -benchmem -bench -json | vizb -o output.html

and boom :collision:

It will generate an interactive chart in an HTML file, and each chart can be downloaded as a PNG.

Moreover, I’ve added some cool flags to it.

:up_right_arrow: Check this out on GitHub.

I hope it will be useful for your next benching. Thank you!