summaryrefslogtreecommitdiff
path: root/hypervisor.proto
diff options
context:
space:
mode:
Diffstat (limited to 'hypervisor.proto')
-rw-r--r--hypervisor.proto9
1 files changed, 9 insertions, 0 deletions
diff --git a/hypervisor.proto b/hypervisor.proto
new file mode 100644
index 0000000..aa2a9da
--- /dev/null
+++ b/hypervisor.proto
@@ -0,0 +1,9 @@
+syntax = "proto3";
+package virtbuf;
+
+message Hypervisor {
+ string hostname = 1;
+ bool active = 2;
+ int64 cpus = 3;
+ int64 memory = 4;
+}