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 b7f0871 commit 4ea372cCopy full SHA for 4ea372c
collector/src/utils/cachegrind.rs
@@ -38,9 +38,10 @@ pub fn cachegrind_annotate(
38
let line = line?;
39
if line.starts_with("fl=") {
40
// All jemalloc filenames have `/jemalloc/` or
41
- // something like `/jemalloc-sys-1e20251078fe5355/` in
+ // something like `/jemalloc-sys-1e20251078fe5355/` or
42
+ // `/tikv-jemalloc-sys-ce50ae873ce2796b` in
43
// them.
- in_jemalloc_file = line.contains("/jemalloc");
44
+ in_jemalloc_file = line.contains("jemalloc");
45
if in_jemalloc_file {
46
writeln!(writer, "fl=<all-jemalloc-files>")?;
47
continue;
0 commit comments