https://github.com/destari/pingtrack
Track latency and packet loss with a minimal web UI
https://github.com/destari/pingtrack
bulma gatsbyjs golang graphs latency rbx reactjs
Last synced: 5 months ago
JSON representation
Track latency and packet loss with a minimal web UI
- Host: GitHub
- URL: https://github.com/destari/pingtrack
- Owner: destari
- License: bsd-2-clause
- Created: 2020-02-16T21:16:13.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-07T00:28:08.000Z (about 2 years ago)
- Last Synced: 2024-10-30T05:07:12.672Z (6 months ago)
- Topics: bulma, gatsbyjs, golang, graphs, latency, rbx, reactjs
- Language: JavaScript
- Size: 16.9 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pingtrack
Track latency and packet loss with a minimal web UI.Built with:
* Golang
* React
* Gatsbyjs
* Bulma (rbx)## Obligatory screenshot:
## Execution
```./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.
## Building
In order to build, you will need Gatsby installed, then you can run `make` in the `cmd/` directory to build the full static binary.### Install Gatsby:
`npm install -g gatsby-cli`### Install npm packages
`cd web; npm install`### Install statik
`go get github.com/rakyll/statik`### Build pingtrack
`cd cmd; make`