We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 151401e + aa3f3d3 commit c8a32acCopy full SHA for c8a32ac
tools/src/com.oracle.truffle.tools.profiler/src/com/oracle/truffle/tools/profiler/impl/CPUSamplerCLI.java
@@ -369,7 +369,7 @@ private static JSONArray getSamplesRec(Collection<ProfilerNode<CPUSampler.Payloa
369
sample.put("self_tier_count", selfTierCount);
370
int[] tierCount = new int[payload.getNumberOfTiers()];
371
for (int i = 0; i < tierCount.length; i++) {
372
- tierCount[i] = payload.getTierSelfCount(i);
+ tierCount[i] = payload.getTierTotalCount(i);
373
}
374
sample.put("tier_count", tierCount);
375
sample.put("children", getSamplesRec(node.getChildren()));
0 commit comments