systemprompt-analytics 0.21.1

Analytics for systemprompt.io AI governance infrastructure. Session, agent, tool, and microdollar-precision cost attribution across the MCP governance pipeline.
Documentation
//! Row DTOs consumed by `systemprompt-cli` analytics reports. Each submodule
//! groups rows for a single CLI command family (agents, content, overview,
//! requests, sessions, tools).
//!
//! 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::*;