add temp monitoring stuff and start of builder crud

This commit is contained in:
beckerinj
2023-06-25 02:38:16 -04:00
parent b33501cce6
commit 7e580efc77
6 changed files with 75 additions and 29 deletions
+1
View File
@@ -137,4 +137,5 @@ pub struct ServerHealth {
pub mem: StatsState,
pub disk: StatsState,
pub disks: HashMap<PathBuf, StatsState>,
pub temps: HashMap<String, StatsState>,
}
+13
View File
@@ -0,0 +1,13 @@
// use monitor_macros::derive_crud_requests;
// use crate::{
// entities::{
// builder::{Builder},
// update::Update,
// },
// MongoDocument,
// };
// derive_crud_requests!(Builder);
+3
View File
@@ -13,6 +13,9 @@ pub use deployment::*;
mod build;
pub use build::*;
mod builder;
pub use builder::*;
//
#[typeshare]