Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Options ¶ added in v0.3.0
type Options struct {
// SSLLib, when set, attaches the PoC SSL_write uprobe to this libssl path to
// capture TLS plaintext (the agent's LLM request body) zero-instrumentation.
SSLLib string
// LibcLib overrides the libc path for the getaddrinfo DNS uprobe; empty =
// auto-detect the common system libc paths.
LibcLib string
// OnReady, when set, is called exactly once after every probe has attached
// and the ring buffer reader is open -- i.e. the sensor is genuinely capturing
// and the caller may safely start the workload it wants observed. Supervisors
// (launch) gate their exec on this to avoid racing a fast agent past a
// not-yet-attached sensor. Callable from a goroutine; keep it non-blocking.
OnReady func()
}
Options configures optional sensor probes beyond the always-on syscall set.
Click to show internal directories.
Click to hide internal directories.