aboutsummaryrefslogtreecommitdiff
path: root/spark-common/src/main/proto/spark/spark.proto
diff options
context:
space:
mode:
Diffstat (limited to 'spark-common/src/main/proto/spark/spark.proto')
-rw-r--r--spark-common/src/main/proto/spark/spark.proto7
1 files changed, 7 insertions, 0 deletions
diff --git a/spark-common/src/main/proto/spark/spark.proto b/spark-common/src/main/proto/spark/spark.proto
index a70b3c3..53750d7 100644
--- a/spark-common/src/main/proto/spark/spark.proto
+++ b/spark-common/src/main/proto/spark/spark.proto
@@ -33,6 +33,7 @@ message SystemStatistics {
Java java = 6;
int64 uptime = 7;
map<string, NetInterface> net = 8;
+ Jvm jvm = 9;
message Cpu {
int32 threads = 1;
@@ -80,6 +81,12 @@ message SystemStatistics {
string vm_args = 4;
}
+ message Jvm {
+ string name = 1;
+ string vendor = 2;
+ string version = 3;
+ }
+
message NetInterface {
RollingAverageValues rx_bytes_per_second = 1;
RollingAverageValues tx_bytes_per_second = 2;