1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

F #2347: better output for onevm

This commit is contained in:
Ruben S. Montero 2017-02-28 16:21:32 +01:00
parent 3e8d385069
commit 7000edf788

View File

@ -1017,11 +1017,19 @@ in the frontend machine.
column :UID, "UID of the user that performed the action",
:left, :size=>4 do |d|
d["UID"]
if d["UID"] != "-1"
d["UID"]
else
"-"
end
end
column :REQ, "Request ID of the action", :left, :size=>5 do |d|
d["REQUEST_ID"]
if d["REQUEST_ID"] != "-1"
d["REQUEST_ID"]
else
"-"
end
end
column :HOST, "Host name of the VM container", :left, :size=>12 do |d|