1996fanrui commented on code in PR #22854:
URL: https://github.com/apache/flink/pull/22854#discussion_r1240574947


##########
flink-runtime/src/main/java/org/apache/flink/runtime/messages/ThreadInfoSample.java:
##########
@@ -38,7 +42,7 @@ public class ThreadInfoSample implements Serializable {
 
     private ThreadInfoSample(Thread.State threadState, StackTraceElement[] 
stackTrace) {
         this.threadState = threadState;
-        this.stackTrace = stackTrace;
+        this.stackTrace = cleanLambdaNames(stackTrace);

Review Comment:
   The `ThreadInfoSample` is common class, should we clean lambda for all 
ThreadInfoSamples by default? or just clean it for flame graph?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to