Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions bin/dx_get_appliance.pl
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@
{'VDBs#', 8},
{'Total Objects', 8},
{'vCpu', 8},
{'vMem [GB]', 9}
{'vMem [GB]', 9},
{'UUID',40}
);
} else {
$output->addHeader(
Expand Down Expand Up @@ -122,6 +123,7 @@
"",
"",
"",
"",
""
);
} else {
Expand Down Expand Up @@ -166,7 +168,8 @@
scalar(@vdb),
scalar(@dsource) + scalar(@vdb),
$system->getvCPU(),
sprintf("%8.2f",$system->getvMem())
sprintf("%8.2f",$system->getvMem()),
$system->getUUID()
);
} else {
$output->addLine(
Expand Down Expand Up @@ -288,10 +291,10 @@ =head1 EXAMPLES

Display a Delphix Engine details

dx_get_appliance.pl -d dxt1 -details
dx_get_appliance.pl -d dxt1 -details

Appliance Status Version Total (GB) Used (GB) Free (GB) PctUsed(%) dSource# VDBs# Total Ob vCpu vMem [GB]
-------------------- -------- -------- ---------- ---------- ---------- ---------- -------- -------- -------- -------- ---------
dxt1 UP 6.0.11.0 33.42 9.17 24.25 27.44 1 2 3 4 15.88
Appliance Status Version Total (GB) Used (GB) Free (GB) PctUsed(%) dSource# VDBs# Total Ob vCpu vMem [GB] UUID
-------------------- -------- -------- ---------- ---------- ---------- ---------- -------- -------- -------- -------- --------- ----------------------------------------
dxt1 UP 6.0.12.1 21.80 7.62 14.18 34.96 1 0 1 2 8.00 564d754d-eb0f-bb3e-15a2-f45c08d0ae24

=cut