revert: Bollard update rolled back, closes #66

Using Bollard 0.19.x meant that network stats weren't being recorded correctly. Updated local unhealthy container to use a speed test in order to check for network IO.
This commit is contained in:
Jack Wills
2025-06-19 20:36:54 +00:00
parent c48465f536
commit aac9c6b598
8 changed files with 256 additions and 256 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ use std::{
time::SystemTime,
};
use bollard::query_parameters::LogsOptions;
use bollard::container::LogsOptions;
// use bollard::container::LogsOptions;
use cansi::v3::categorise_text;
use crossterm::{
@@ -188,7 +188,7 @@ impl InputHandler {
let path = log_path.join(format!("{name}_{now}.log"));
let options = Some(LogsOptions {
let options = Some(LogsOptions::<String> {
stderr: true,
stdout: true,
timestamps: args.show_timestamp,