The project is a health checker. It aims to check in real-time the health of each observed local utility.
The utility can be a Docker Container, a Machine, or a Network Device in your local network.
The monitor notifies the utility referent if it changes its state (i.e. goes offline or comes back online).
The alert can be a Slack message, an Email, or a Telegram message like these:
An accurate report can be found in /docs/report.pdf
This project was created as an exam project to test a set of skills, including:
- Knowledge of Microservices
- Knowledge of Design Patterns
- Knowledge of Java, Maven, and Spring Boot
- Knowledge of Messaging Systems (RabbitMQ) and their Patterns
- Knowledge of Git & GitHub
I also had the opportunity to practice the following skills:
- Knowledge of ORMs (Hibernate)
- Knowledge of Redis
- Use of the Static Analysis Tools (CodeFactor, Snyk Code, and Sonar Qube)
Each microservice is contained in a Docker Container.
The only reachable containers in the Docker Network are Frontend, API Gateway, and Grafana.
The UML of the internal structure of each microservice is stored in /docs/uml/
Main Notes:
- RabbitMQ provides an Exchange implementing the Publish-Subscribe Design Pattern.
- The HTTP connection between Monitor and Data Manager is a Keep-Alive (persistent) connection.
- Monitor implements the Factory-Method Design Pattern for the request module.
- Notification implements the Factory-Method Design Pattern for the sender module.
- Get any set of valid credentials or tokens (e.g. for Telegram) to send notifications.
- Download and install Docker.
$ git clone https://github.com/antonioscardace/NetWatch.git
$ cd YOUR_PATH/NetWatch/
$ bash run.sh
Container | URL | Description |
---|---|---|
grafana-charts | https://localhost:8800/ | Grafana Logs |
rabbitmq | http://localhost:15672/ | RabbitMQ UI |