ghostscope-loader 0.1.4

Loads compiled GhostScope programs, manages sessions, and orchestrates eBPF lifecycle.
Documentation
1
2
3
4
5
6
7
8
9
/// Parameters for uprobe attachment
#[derive(Debug, Clone)]
pub(crate) struct UprobeAttachmentParams {
    pub target_binary: String,
    pub function_name: String,
    pub offset: Option<u64>,
    pub pid: Option<i32>,
    pub program_name: String,
}