-
A simple CLI based healthcheck tool for your web services. Tells you about whether your service is running or not using terminal.
-
Personally, I have been using it to keep an eye my sensor servers for my new weather station project, because cloud providers would spin down the server in case of long inactivity.
- Prerequisites
- Go 1.23 or higher
- Any code editor
- Get the repo
git clone https://github.com/Adityasinghvats/health-check-tool.git
- Get into the directory
cd health-check-tool
- Get all dependencies
go mod tidy
- Run your programme using the terminal
$go run . --domain https://tailwindcss.com/
- For specifying port you can use flag
--port
$go run . --domain https://localhost --port 8080