Skip to main content

ProfilerConfig

Struct ProfilerConfig 

Source
pub struct ProfilerConfig {
Show 15 fields pub skip_idle: bool, pub stream_mode: u8, pub frequency: u64, pub kprobe: Option<String>, pub uprobe: Option<UProbeConfig>, pub smart_uprobe: Option<SmartUProbeConfig>, pub tracepoint: Option<String>, pub raw_tracepoint: Option<String>, pub raw_tracepoint_task_regs: Option<String>, pub raw_tracepoint_generic: Option<String>, pub target_syscall_nr: i64, pub pid: Option<u32>, pub cpu: Option<u32>, pub self_profile: bool, pub dwarf: bool,
}

Fields§

§skip_idle: bool§stream_mode: u8§frequency: u64§kprobe: Option<String>§uprobe: Option<UProbeConfig>

Legacy single-target uprobe config (backward compat).

§smart_uprobe: Option<SmartUProbeConfig>

New smart uprobe config with multi-attach support.

§tracepoint: Option<String>§raw_tracepoint: Option<String>

Raw tracepoint name for syscall raw_tp (e.g., “sys_enter”). Uses collect_trace_raw_syscall which reads pt_regs from args[0].

§raw_tracepoint_task_regs: Option<String>

Raw tracepoint name for generic raw_tp with task pt_regs (e.g., “sched_switch”). Uses bpf_get_current_task_btf() + bpf_task_pt_regs() for full FP/DWARF unwinding. Requires kernel >= 5.15; falls back to raw_tracepoint_generic on older kernels.

§raw_tracepoint_generic: Option<String>

Raw tracepoint name for generic raw_tp (e.g., “sched_switch”). Uses collect_trace_raw_tp_generic which relies on bpf_get_stackid only.

§target_syscall_nr: i64

Target syscall number for raw tracepoint filtering (-1 = all).

§pid: Option<u32>§cpu: Option<u32>§self_profile: bool§dwarf: bool

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,