Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-07T00:28:08.000Z (over 1 year ago)
- Last Synced: 2023-03-25T09:43:09.606Z (over 1 year ago)
- Topics: bulma, gatsbyjs, golang, graphs, latency, rbx, reactjs
- Language: JavaScript
- Size: 16.9 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- 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:
![Example screenshot of graphs](https://github.com/destari/pingtrack/blob/master/Screen%20Shot%202020-02-17%20at%208.26.48%20PM.png)## 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`