pub struct SyscallAnomalyConfig {
pub enabled: bool,
pub strict_mode: bool,
pub alert_on_unknown_syscall: bool,
pub max_denied_events_per_minute: u32,
pub max_total_events_per_minute: u32,
pub max_alerts_per_minute: u32,
pub alert_cooldown_secs: u64,
pub baseline_syscalls: Vec<String>,
}Expand description
Configuration for the syscall anomaly detector.
Fields§
§enabled: bool§strict_mode: bool§alert_on_unknown_syscall: bool§max_denied_events_per_minute: u32§max_total_events_per_minute: u32§max_alerts_per_minute: u32§alert_cooldown_secs: u64§baseline_syscalls: Vec<String>Trait Implementations§
Source§impl Clone for SyscallAnomalyConfig
impl Clone for SyscallAnomalyConfig
Source§fn clone(&self) -> SyscallAnomalyConfig
fn clone(&self) -> SyscallAnomalyConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SyscallAnomalyConfig
impl Debug for SyscallAnomalyConfig
Auto Trait Implementations§
impl Freeze for SyscallAnomalyConfig
impl RefUnwindSafe for SyscallAnomalyConfig
impl Send for SyscallAnomalyConfig
impl Sync for SyscallAnomalyConfig
impl Unpin for SyscallAnomalyConfig
impl UnsafeUnpin for SyscallAnomalyConfig
impl UnwindSafe for SyscallAnomalyConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more