Open pchamo opened 7 years ago
The whole section is (lines 802 to 821):
###################### # VM STATE ###################### if($VM_STATE eq "yes") { $vmstateString .= "<tr>"; ## ESX/ESXi host ## $vmstateString .= "<td>".$host_name."</td>"; ## DISPLAY NAME ## $vmstateString .= "<td>".$vm->name."</td>"; ## BOOT TIME ## $vmstateString .= "<td>".($vm->runtime->bootTime ? $vm->runtime->bootTime : "N/A")."</td>"; if($aversion eq '4.1.0' || ($aversion eq '5.0.0' || $aversion eq '5.1.0')) { ## UPTIME ## $vmstateString .= "<td>".($vm->summary->quickStats->uptimeSeconds ? &getUptime($vm->summary->quickStats->uptimeSeconds) : "N/A")."</td>"; }
I found a line with no vSphere version 5.5.0. I mean, these are lines 817 to 821 of the vmwarevSphereHealthCheck.pl version 6.0.0:
I wonder why the version number 5.5.0 is not included. And also, some lines don't include the versio number 6.0.0. Those lines are identified running this command:
Is all of that ok? Thank you.