tmai-core 0.8.2

Core library for tmai - agent detection, state management, and monitoring
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod analyze;
pub mod events;
pub mod helper;
pub mod logger;
pub mod reader;

pub use events::AuditEvent;
pub use logger::AuditLogger;

/// Sender for audit events from non-Poller threads (UI, Web API)
pub type AuditEventSender = tokio::sync::mpsc::UnboundedSender<AuditEvent>;