From 4eff32f040d023e225937c1a59583f1e89b2cac2 Mon Sep 17 00:00:00 2001 From: Luck Date: Fri, 6 Mar 2020 17:27:26 +0000 Subject: Treat different methods (not just methods with the same name) as different stack nodes & include method descriptions in proto data --- spark-common/src/main/proto/spark/spark.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'spark-common/src/main/proto/spark') diff --git a/spark-common/src/main/proto/spark/spark.proto b/spark-common/src/main/proto/spark/spark.proto index 9319ea8..1c7a002 100644 --- a/spark-common/src/main/proto/spark/spark.proto +++ b/spark-common/src/main/proto/spark/spark.proto @@ -79,7 +79,9 @@ message StackTraceNode { repeated StackTraceNode children = 2; string class_name = 3; string method_name = 4; - int32 line_number = 5; // optional + int32 parent_line_number = 5; // optional + int32 line_number = 6; // optional + string method_desc = 7; // optional } message ThreadNode { -- cgit