We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af5e4d1 commit 0b83280Copy full SHA for 0b83280
examples/internal/pyspy-connect.rs
@@ -20,8 +20,8 @@ fn main() -> Result<()> {
20
.sample_rate(100)
21
.lock_process(true)
22
.time_limit(None)
23
- .with_subprocesses(true)
24
- .include_idle(false)
+ .detect_subprocesses(true)
+ .oncpu(false)
25
.native(false);
26
27
let agent = PyroscopeAgent::builder("http://localhost:4040", "pyspy.basic")
examples/internal/rbspy-connect.rs
@@ -19,7 +19,7 @@ fn main() -> Result<()> {
19
let config = RbspyConfig::new(pid)
- .with_subprocesses(true);
+ .detect_subprocesses(true);
let agent = PyroscopeAgent::builder("http://localhost:4040", "rbspy.basic")
.tags([("Host", "Ruby")].to_vec())
0 commit comments