Skip to content

Commit 290f948

Browse files
committed
Handle <not counted> perf output
1 parent 86b06a6 commit 290f948

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

collector/src/execute/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ fn process_stat_output(
588588
let name = get!(parts.next());
589589
let _time = get!(parts.next());
590590
let pct = get!(parts.next());
591-
if cnt == "<not supported>" || cnt.len() == 0 {
591+
if cnt == "<not supported>" || cnt == "<not counted>" || cnt.len() == 0 {
592592
continue;
593593
}
594594
if !pct.starts_with("100.") {

0 commit comments

Comments
 (0)