Hi Robert,
You could manually export the statistics to CSV format in the UCSM gui for each object (chassis, fabric interconnect etc).
The other option is to write a script using the UCS Powertool for Powershell
(http://developer.cisco.com/web/unifiedcomputing/pshell-download).
You would just basically need to do something like the following:
Connect-UCS 10.10.10.10
Get-UcsStatistics | Where {$_.dn -like "fabric/lan/*/tx-stats"} | select Dn,TimeCollected,TotalPackets,JumboPackets | Export-Csv JumboStats.csv