monit-agregator-0.1.3 is not a library.
Visit the last successful build:
monit-agregator-0.1.1
Monit-Agregator
Web interface for visualize the status of multiples Monit instances.
Monit is a free open source utility for managing and monitoring, processes, programs, files, directories and filesystems on a UNIX system.
You can see status of services with a webui, but only for one host. You can see all hosts with M/Monit, but it's not free and open source 😥, Monit-Agregator is a very light alternative.
Screenshot

Installation
With cargo :
cargo install monit-agregator
From sources :
git clone https://github.com/thasos/monit-agregator
cd monit-agregator
cargo build --release
ls -l target/release/monit-agregator
Configuration
Create a file Settings.yaml :
---
ip: "0.0.0.0"
port: 3030
wait_period: 60 # refresh period for hosts status
hosts:
- name: "host1" # name displayed in webui
url: "http://192.168.0.1:28" # url the binary access
public_url: "https://monit.domain.com/host1/" # optional
- name: "host2"
url: "http://192.168.0.2:28"
Start
monit-agregator -c Settings.yaml
Usage