diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 2939605f..5b712cb9 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -2764,11 +2764,39 @@ our $vmstatus_return_properties = { optional => 1, renderer => 'bytes', }, + diskread => { + description => "The amount of bytes the guest read from it's disks since the process" + ." start in bytes.", + type => 'integer', + optional => 1, + renderer => 'bytes', + }, + diskwrite => { + description => "The amount of bytes the guest wrote to it's disks since the process" + ." start in bytes.", + type => 'integer', + optional => 1, + renderer => 'bytes', + }, name => { description => "VM name.", type => 'string', optional => 1, }, + netin => { + description => "The amount of traffic that was sent to the guest since the process start," + ." in bytes.", + type => 'integer', + optional => 1, + renderer => 'bytes', + }, + netout => { + description => "The amount of traffic that was sent from the guest since the process start," + ." in bytes.", + type => 'integer', + optional => 1, + renderer => 'bytes', + }, qmpstatus => { description => "VM run state from the 'query-status' QMP monitor command.", type => 'string', @@ -2810,6 +2838,12 @@ our $vmstatus_return_properties = { type => 'string', optional => 1, }, + template => { + description => "Determines if the guest is a template.", + type => 'boolean', + optional => 1, + default => 0, + }, }; my $last_proc_pid_stat;