From 394833a93af5dfd6f5e08a0da7a24180436c0330 Mon Sep 17 00:00:00 2001 From: Nikhil Sinha Date: Wed, 18 Feb 2026 00:27:21 +1100 Subject: [PATCH] default cpu and memory threshold at 100% --- src/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index d5f9abd60..65fbf8d00 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -352,7 +352,7 @@ pub struct Options { #[arg( long, env = "P_CPU_THRESHOLD", - default_value = "80.0", + default_value = "100.0", value_parser = validation::validate_percentage, help = "CPU utilization threshold percentage (0.0-100.0) for resource monitoring" )] @@ -361,7 +361,7 @@ pub struct Options { #[arg( long, env = "P_MEMORY_THRESHOLD", - default_value = "80.0", + default_value = "100.0", value_parser = validation::validate_percentage, help = "Memory utilization threshold percentage (0.0-100.0) for resource monitoring" )]