pub struct AggregatedException {
pub signature: String,
pub first_seen: DateTime<Utc>,
pub last_seen: DateTime<Utc>,
pub count: u32,
pub sample: ExceptionRecord,
}Expand description
缓冲区内按签名聚合的异常。
相同 dedup_signature 的异常记录被聚合为一条,
只保留首次出现的样本记录,后续仅累加计数和更新时间。
Fields§
§signature: String归一化签名。
first_seen: DateTime<Utc>首次出现时间。
last_seen: DateTime<Utc>最近出现时间。
count: u32累计出现次数。
sample: ExceptionRecord样本异常记录(首次出现的记录)。
Trait Implementations§
Source§impl Clone for AggregatedException
impl Clone for AggregatedException
Source§fn clone(&self) -> AggregatedException
fn clone(&self) -> AggregatedException
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AggregatedException
impl RefUnwindSafe for AggregatedException
impl Send for AggregatedException
impl Sync for AggregatedException
impl Unpin for AggregatedException
impl UnsafeUnpin for AggregatedException
impl UnwindSafe for AggregatedException
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more