systemprompt-analytics 0.41.0

Analytics for systemprompt.io AI governance infrastructure. Session, agent, tool, and microdollar-precision cost attribution across the MCP governance pipeline.
Documentation
//! Row DTOs backing analytics reports. Each submodule groups rows for a
//! single report family (agents, content, overview, requests, sessions,
//! tools); `systemprompt-cli` is the primary consumer.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

mod agent;
mod content;
mod overview;
mod request;
mod session;
mod tool;

pub use agent::*;
pub use content::*;
pub use overview::*;
pub use request::*;
pub use session::*;
pub use tool::*;