pub struct Alert {
pub rule_name: String,
pub severity: RuleSeverity,
pub title: String,
pub triggered_at: DateTime<Utc>,
pub evidence: Vec<TimelineEvent>,
pub description: String,
}Expand description
An alert generated when a correlation rule fires.
Fields§
§rule_name: StringRule name that generated this alert.
severity: RuleSeveritySeverity level.
title: StringAlert title from rule output.
triggered_at: DateTime<Utc>When the alert was triggered (timestamp of the final matching event).
evidence: Vec<TimelineEvent>Evidence: the timeline events that contributed to this alert.
description: StringAlert description from rule.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Alert
impl RefUnwindSafe for Alert
impl Send for Alert
impl Sync for Alert
impl Unpin for Alert
impl UnsafeUnpin for Alert
impl UnwindSafe for Alert
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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