[feature](profile) add MaxActiveTime and add exectime in pipelineX (#26148)

This commit is contained in:
Mryange
2023-10-31 17:53:52 +08:00
committed by GitHub
parent 973657d163
commit b137f03921
40 changed files with 100 additions and 99 deletions

View File

@ -127,7 +127,11 @@ public class RuntimeProfile {
}
public Counter getCounterTotalTime() {
return counterTotalTime;
Counter totalTimeCounter = counterMap.get("TotalTime");
if (totalTimeCounter == null) {
return counterTotalTime;
}
return totalTimeCounter;
}
public int nodeId() {