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 6446d3a commit d140595Copy full SHA for d140595
1 file changed
src/executor/wall_time/profiler/samply/mod.rs
@@ -114,6 +114,12 @@ impl Profiler for SamplyProfiler {
114
),
115
]);
116
117
+ // Directory where the profiled runtime drops its V8 code log (one
118
+ // `codspeed-v8-<pid>.log` per process); samply reads them back per
119
+ // jitdump pid to expand inlined frames. Both the writer (the runtime)
120
+ // and the reader (samply) see this through the inherited environment.
121
+ cmd_builder.env("CODSPEED_V8_LOG", profile_folder);
122
+
123
// Extra hardware events to capture alongside the sampling event,
124
// stored by samply as per-sample delta columns in the profile, as
125
// `<name>:<type>:<config>` specs resolved for the CPU we run on.
0 commit comments