1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-12 08:58:17 +03:00

Wrong data displayed while monitoring VM

git-svn-id: http://svn.opennebula.org/trunk@53 3034c82b-c49b-4eb3-8279-a7acafdc01c0
This commit is contained in:
Rubén S. Montero 2008-07-10 15:51:05 +00:00
parent ce56897009
commit 0898654fcc

View File

@ -489,9 +489,9 @@ void VirtualMachineManagerDriver::protocol(
os.str("");
os << "Monitor Information:\n"
<< "\tCPU : "<< cpu << "\n"
<< "\tMemory: "<< cpu << "\n"
<< "\tNet_TX: "<< cpu << "\n"
<< "\tNet_RX: "<< cpu << "\n";
<< "\tMemory: "<< memory << "\n"
<< "\tNet_TX: "<< net_tx << "\n"
<< "\tNet_RX: "<< net_rx << "\n";
vm->log("VMM",Log::INFO,os);
break;