Skip to main content

SchemaRouter

Struct SchemaRouter 

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

A multi-engine router over a classifier, a RoutingPlan, one detection engine per pipeline-set, and one shared correlation store.

Implementations§

Source§

impl SchemaRouter

Source

pub fn build( collection: &SigmaCollection, classifier: SchemaClassifier, plan: RoutingPlan, pipeline_sets: Vec<Vec<Pipeline>>, corr_config: CorrelationConfig, include_event: bool, match_detail: MatchDetailLevel, logsource_extractor: Option<LogSourceExtractor>, ) -> Result<Self>

Build a router. pipeline_sets must be index-aligned with plan.pipeline_sets() (one resolved pipeline list per set).

Source

pub fn on_unknown(&self) -> OnUnknown

The unknown-handling policy this router enforces.

Source

pub fn has_correlations(&self) -> bool

Whether this router has a correlation store.

Source

pub fn detection_rule_count(&self) -> usize

Number of detection rules (same across every per-schema engine).

Source

pub fn logsource_pruned_total(&self) -> u64

Total rule candidates pruned by logsource across every per-schema engine (each event routes to exactly one engine).

Source

pub fn logsource_absent_total(&self) -> u64

Total evaluate calls with no extractable event logsource (fail-open) across every per-schema engine.

Source

pub fn correlation_rule_count(&self) -> usize

Number of correlation rules in the shared store (0 when none).

Source

pub fn state_count(&self) -> usize

Number of live correlation window-state entries (0 when none).

Source

pub fn correlation_introspect( &self, id: Option<&str>, group: Option<&str>, ) -> Option<CorrelationStateSnapshot>

Introspect the shared correlation store, if any (id/group filtered).

Source

pub fn export_state(&self) -> Option<CorrelationSnapshot>

Export the shared correlation state, if any, for hot-reload carry-over.

Source

pub fn import_state(&mut self, snapshot: CorrelationSnapshot) -> bool

Import previously exported correlation state into the shared store. No-op (returns true) when there is no correlation store.

Source

pub fn process_batch<E: Event + Sync>( &mut self, events: &[&E], ) -> Vec<ProcessResult>

Route a batch of events: parallel classify + detection, then sequential correlation into the shared store. Mirrors CorrelationEngine::process_batch: the stateless phase runs concurrently (under the parallel feature) and the stateful correlation phase runs in order. Drop/error outcomes yield empty results for that event.

Source

pub fn route(&mut self, event: &impl Event) -> RouteResult

Classify and route one event.

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.