Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 465 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 465 Bytes

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

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

build and start client

cd client
go build -o client
./client -h localhost -p 8080