orb8_cli/lib.rs
1//! Command-line interface for orb8
2//!
3//! Commands:
4//! - `orb8 trace network` - Stream live network events
5//! - `orb8 flows` - Query aggregated network flows
6//! - `orb8 status` - Get agent status
7//!
8//! Usage:
9//! ```bash
10//! # Stream network events from agent on localhost:9090
11//! orb8 trace network
12//!
13//! # Stream events from specific agent, filtering by namespace
14//! orb8 -a 10.0.0.5:9090 trace network -n default
15//!
16//! # Query top flows
17//! orb8 flows --limit 50
18//!
19//! # Get agent status
20//! orb8 status
21//! ```
22
23pub use orb8_proto::{AgentStatus, NetworkEvent, NetworkFlow};