An open API service indexing awesome lists of open source software.

https://github.com/chebro/heartbeat

system status
https://github.com/chebro/heartbeat

go-chi golang gopsutil

Last synced: 3 days ago
JSON representation

system status

Awesome Lists containing this project

README

          

# systat

a simple webpage to monitor system status that is based on a client-server model where,

- client(s) send periodic pings with basic status info
- server updates the client info after each ping and renders webpage

# run on localhost

build and start server
```bash
go build -ldflags "-X main.gitCommitHash=$(git rev-parse --short HEAD)" -o systat
./systat
```

build and start client
```bash
cd client
go build -o client
./client -h localhost -p 8080
```