One of my clients has recently been having issues with their storage solution, and wanted to export the events from vCenter that show storage performance degradation, to aid in troubleshooting with the vendor.
For some reason, and I have yet to confirm that this is a bug with the vCenter 5.0 appliance or the vCenter Desktop Client, when an event export is done, the storage related events are not exported with the rest of the events.
Thankfully we were able to get the event details exported using the following PowerCLI oneliner:
[cc lang=“powershell” width=“95%” theme=“blackboard” nowrap=“0”] PowerCLI C:\log> Get-VIEvent -Start 19/11/2012 -Finish 30/11/2012 | Export-Csv “events.csv” -NoTypeInformation -UseCulture [/cc]
This generates an events.csv file in the current directory, containing all the events in the given timeframe, from the vCenter it is connected to. And yes, the storage related events missing from the vCenter Desktop Client export are indeed included in the file generated by the Get-VIEvent cmdlet.
Once again, PowerCLI to the rescue!
Related Posts
- Auto Installation and Configuring of vSphere ESXi 5 — Published
- Setting Up Automated ESXi Deployments — Published
- Developer meets PowerCLI - awesomeness ensues — Published
- VMware vSphere Health Check - What´s in it for You? — Published
- Automatically Name Datastores in vSphere? — Published