sandbox-rs 0.2.1

A comprehensive Rust sandbox implementation that provides process isolation, resource limiting, and syscall filtering for secure program execution.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Monitoring layer: Process and syscall monitoring
//!
//! Provides real-time monitoring of sandboxed processes,
//! including resource usage tracking via /proc and syscall tracing via eBPF.

pub mod ebpf;
pub mod monitor;

pub use ebpf::EBpfMonitor;
pub use monitor::{ProcessMonitor, ProcessState, ProcessStats};