We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3bdb12 commit 4fb2da7Copy full SHA for 4fb2da7
src/handlers/http/resource_check.rs
@@ -26,8 +26,8 @@ use actix_web::{
26
use sysinfo::System;
27
use tracing::warn;
28
29
-const CPU_UTILIZATION_THRESHOLD: f32 = 50.0;
30
-const MEMORY_UTILIZATION_THRESHOLD: f32 = 50.0;
+const CPU_UTILIZATION_THRESHOLD: f32 = 90.0;
+const MEMORY_UTILIZATION_THRESHOLD: f32 = 90.0;
31
32
/// Middleware to check system resource utilization before processing requests
33
/// Returns 503 Service Unavailable if CPU or memory usage exceeds thresholds
0 commit comments