diff options
author | Luck <git@lucko.me> | 2021-12-30 12:54:30 +0000 |
---|---|---|
committer | Luck <git@lucko.me> | 2021-12-30 12:54:30 +0000 |
commit | 732110084a44e5d18dee5b6744cc44c9cdd41fb9 (patch) | |
tree | 902ae5da91d13241ccef133b8c07ef1f8599450c /spark-common/src/main/proto/spark | |
parent | 2003a5c8dffa52d1bd8b923a0f899141ae816fbd (diff) | |
download | spark-732110084a44e5d18dee5b6744cc44c9cdd41fb9.tar.gz spark-732110084a44e5d18dee5b6744cc44c9cdd41fb9.tar.bz2 spark-732110084a44e5d18dee5b6744cc44c9cdd41fb9.zip |
Include the name of the CPU model in stats for Linux systems
Diffstat (limited to 'spark-common/src/main/proto/spark')
-rw-r--r-- | spark-common/src/main/proto/spark/spark.proto | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spark-common/src/main/proto/spark/spark.proto b/spark-common/src/main/proto/spark/spark.proto index 678df3a..520f19e 100644 --- a/spark-common/src/main/proto/spark/spark.proto +++ b/spark-common/src/main/proto/spark/spark.proto @@ -36,6 +36,7 @@ message SystemStatistics { int32 threads = 1; Usage process_usage = 2; Usage system_usage = 3; + string modelName = 4; // optional message Usage { double last1m = 1; |