diff options
author | Luck <git@lucko.me> | 2024-09-03 21:03:47 +0100 |
---|---|---|
committer | Luck <git@lucko.me> | 2024-09-03 21:03:47 +0100 |
commit | ed33fd51cefabfd04df4376dc2118f31ce93a90d (patch) | |
tree | 67b26c373423c48c3baa9b05c48975a0b47b3053 /spark-common/src/main/proto/spark/spark_sampler.proto | |
parent | 684cc5e071e30161bea825ba2b4b9f7b9984805d (diff) | |
download | spark-ed33fd51cefabfd04df4376dc2118f31ce93a90d.tar.gz spark-ed33fd51cefabfd04df4376dc2118f31ce93a90d.tar.bz2 spark-ed33fd51cefabfd04df4376dc2118f31ce93a90d.zip |
Include engine type in sampler proto
Diffstat (limited to 'spark-common/src/main/proto/spark/spark_sampler.proto')
-rw-r--r-- | spark-common/src/main/proto/spark/spark_sampler.proto | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/spark-common/src/main/proto/spark/spark_sampler.proto b/spark-common/src/main/proto/spark/spark_sampler.proto index 10cc6d1..bd48e7d 100644 --- a/spark-common/src/main/proto/spark/spark_sampler.proto +++ b/spark-common/src/main/proto/spark/spark_sampler.proto @@ -34,6 +34,7 @@ message SamplerMetadata { map<string, PluginOrModMetadata> sources = 13; map<string, string> extra_platform_metadata = 14; SamplerMode sampler_mode = 15; + SamplerEngine sampler_engine = 16; message ThreadDumper { Type type = 1; @@ -69,6 +70,11 @@ message SamplerMetadata { EXECUTION = 0; ALLOCATION = 1; } + + enum SamplerEngine { + JAVA = 0; + ASYNC = 1; + } } message ThreadNode { |