thoughtjack 0.6.0

Adversarial agent security testing tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Observability module (TJ-SPEC-008)
//!
//! Logging, metrics, and structured event infrastructure for monitoring
//! `ThoughtJack` operations during security tests.

pub mod events;
pub mod logging;
pub mod metrics;
pub mod progress;

pub use events::{EventEmitter, ThoughtJackEvent};
pub use logging::{LogFormat, init_logging};
pub use metrics::init_metrics;