adds telemetry list

This commit is contained in:
2025-02-14 20:22:31 -08:00
parent 44523f3cdb
commit a864c0b41c
19 changed files with 553 additions and 58 deletions

View File

@@ -79,8 +79,7 @@ async fn get_tlm_history(
}
pub fn setup_api(cfg: &mut web::ServiceConfig) {
cfg
.service(get_all_tlm_definitions)
cfg.service(get_all_tlm_definitions)
.service(get_tlm_definition)
.service(get_tlm_history);
}

View File

@@ -505,7 +505,7 @@ impl TelemetryHistory {
service,
self.data.definition.data_type,
)
.await,
.await,
);
}
}
@@ -543,7 +543,6 @@ impl TelemetryHistory {
let mut disk_result = vec![];
let mut ram_result = vec![];
let mut from = from;
let mut to = to;
let initial_to = to;