pub struct AuditLogEntry<'a> {
pub timestamp: String,
pub level: &'a str,
pub event: &'a str,
pub contract: Option<Contract<'a>>,
pub target: Option<Target<'a>>,
pub results: Option<Vec<RuleResult>>,
pub executor: Executor,
pub details: Option<&'a str>,
pub summary: Option<ProcessSummary>,
}Expand description
Top-level audit log entry.
Each line in audit-YYYY-MM-DD.jsonl will be one of these.
This is the canonical structure for all audit events:
- timestamped
- leveled (INFO, AUDIT, ERROR, etc.)
- typed by
event - optionally tied to a contract, target, results, or summary
Fields§
§timestamp: String§level: &'a str§event: &'a str§contract: Option<Contract<'a>>§target: Option<Target<'a>>§results: Option<Vec<RuleResult>>§executor: Executor§details: Option<&'a str>§summary: Option<ProcessSummary>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for AuditLogEntry<'a>
impl<'a> RefUnwindSafe for AuditLogEntry<'a>
impl<'a> Send for AuditLogEntry<'a>
impl<'a> Sync for AuditLogEntry<'a>
impl<'a> Unpin for AuditLogEntry<'a>
impl<'a> UnwindSafe for AuditLogEntry<'a>
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreCreates a shared type from an unshared type.