netvl commented on code in PR #22854:
URL: https://github.com/apache/flink/pull/22854#discussion_r1242552279
##########
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:
Fair enough. I'll check where it can be done in the flame graph logic.
--
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]