[!NOTE] Stamon is currently in active development and is not yet fully functional. However, you are welcome to try it out and provide feedback! ;-)
Although some features are missing the basic monitoring is working as expected. You can try it out and open an issue if you encounter any bugs or any feature you would like to be added to stamon.
docker run
docker run -it -e JWT_SECRET="hello-world" -p 3000:3000 k4htoo/stamon
docker compose
services:
stamon:
image: k4htoo/stamon
environment:
JWT_SECRET: "A_very_secure_secret"
ports:
- "3000:3000"
Then, start the container:
docker compose up stamon
Visit http://localhost:3000.
To start the frontend:
cd ./frontend
pnpm dev
Then on other terminal start the backend
cargo run
Then visit http://localhost:5173
Thank you for considering contributing to Stamon! Contributions are welcome, including:
Made with contrib.rocks.
Implement notification system for alerts
Add more monitoring types (e.g. DNS, TCP, docker)
Add support for custom alert thresholds
This project is licensed under the MIT license.