Track latency and packet loss with a minimal web UI.
Built with:
- Golang
- React
- Gatsbyjs
- Bulma (rbx)
./pingtrack -H localhost -p 8080 -i 5 hosts google.com 192.168.2.1 192.168.2.10
You can skip all the parameters except the hosts (for now). So you can also do this:
./pingtrack hosts google.com
In the web app, you can add/remove hosts dynamically.
In order to build, you will need Gatsby installed, then you can run make
in the cmd/
directory to build the full static binary.
npm install -g gatsby-cli
cd web; npm install
go get github.com/rakyll/statik
cd cmd; make