diff options
author | Luck <git@lucko.me> | 2020-03-06 17:27:26 +0000 |
---|---|---|
committer | Luck <git@lucko.me> | 2020-03-06 17:27:26 +0000 |
commit | 4eff32f040d023e225937c1a59583f1e89b2cac2 (patch) | |
tree | 5728fae71c32705cadea07c09acf868e2e4aafda /spark-common/src/main/proto/spark | |
parent | 9b7dd3af75f0b2cc76dfd5a5d317874fa21b4856 (diff) | |
download | spark-4eff32f040d023e225937c1a59583f1e89b2cac2.tar.gz spark-4eff32f040d023e225937c1a59583f1e89b2cac2.tar.bz2 spark-4eff32f040d023e225937c1a59583f1e89b2cac2.zip |
Treat different methods (not just methods with the same name) as different stack nodes & include method descriptions in proto data
Diffstat (limited to 'spark-common/src/main/proto/spark')
-rw-r--r-- | spark-common/src/main/proto/spark/spark.proto | 4 |
1 files changed, 3 insertions, 1 deletions
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 { |