systemprompt-logging 0.14.3

Tracing and audit infrastructure for systemprompt.io AI governance. Structured events, five-point audit traces, and SIEM-ready JSON output — part of the MCP governance pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Log-retention policy and scheduling.
//!
//! [`RetentionPolicy`]/[`RetentionConfig`] define how long log rows are kept;
//! [`RetentionScheduler`] runs the periodic cleanup that enforces them.

pub mod policies;
pub mod scheduler;

pub use policies::{RetentionConfig, RetentionPolicy};
pub use scheduler::RetentionScheduler;