├── .github └── workflows │ └── build-check.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── install.sh └── src ├── backup ├── database.rs └── mod.rs ├── checks ├── mod.rs ├── system.rs └── vault.rs ├── lib.rs ├── main.rs └── monitoring ├── mod.rs └── resources.rs /.github/workflows/build-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattBlack85/astro_monitor/HEAD/.github/workflows/build-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattBlack85/astro_monitor/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattBlack85/astro_monitor/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattBlack85/astro_monitor/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattBlack85/astro_monitor/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattBlack85/astro_monitor/HEAD/install.sh -------------------------------------------------------------------------------- /src/backup/database.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattBlack85/astro_monitor/HEAD/src/backup/database.rs -------------------------------------------------------------------------------- /src/backup/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod database; 2 | -------------------------------------------------------------------------------- /src/checks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattBlack85/astro_monitor/HEAD/src/checks/mod.rs -------------------------------------------------------------------------------- /src/checks/system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattBlack85/astro_monitor/HEAD/src/checks/system.rs -------------------------------------------------------------------------------- /src/checks/vault.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattBlack85/astro_monitor/HEAD/src/checks/vault.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattBlack85/astro_monitor/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattBlack85/astro_monitor/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/monitoring/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod resources; 2 | -------------------------------------------------------------------------------- /src/monitoring/resources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattBlack85/astro_monitor/HEAD/src/monitoring/resources.rs --------------------------------------------------------------------------------