Skip to main content

RotatingAuditor

Struct RotatingAuditor 

Source
pub struct RotatingAuditor { /* private fields */ }
Expand description

Enhanced auditor with rotation policy and audit rules.

Built on top of SqlAuditor, it adds:

  • Log rotation (automatic cleanup of old logs by size or age)
  • Audit rules (allow/deny list filtering)

Implementations§

Source§

impl RotatingAuditor

Source

pub fn new(policy: RotationPolicy, rules: AuditRules) -> Self

Source

pub fn with_max_entries(max_entries: usize) -> Self

Create an auditor that rotates only by size, with no rule filtering

Source

pub fn with_max_age(max_age_ms: i64) -> Self

Create an auditor that rotates only by age, with no rule filtering

Source

pub fn log(&self, ctx: &SqlAuditContext) -> bool

Record an audit log, automatically applying rule filtering and rotation policy

Source

pub fn get_logs(&self) -> Vec<SqlAuditContext>

Return a snapshot of the current logs

Source

pub fn rotation_count(&self) -> usize

Return the number of rotations performed

Source

pub fn rotate(&self) -> usize

Manually trigger rotation (clears the current logs)

Source

pub fn len(&self) -> usize

Return the current number of log entries

Source

pub fn is_empty(&self) -> bool

Whether the auditor is empty

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.