Reporting Symmetrix Tier Usage by Storage Group
Someone on the Symmetrix Support Forums on the EMC Community Network was asking for a way to report on Tier Usage by Storage Group. That’s pretty simple and easy to see with the following command: [box]symfast -sid xxxx list -demand –association[/box] However that is raw output and even if output is XML it’s just not that easy to parse into Excel. So I decide to write a quick perl script to parse the output and turn it into a CSV. It’s fairly simple, but you do need to edit the script to specify the name of all your tiers. That is done on line 15. [box]my @tiers = (‘R5_SSD’, ‘R5_FC’, ‘R6_SATA’); [/box] Each tier just needs to be added as an element to the array. Then you just run the perl script passing the SID of the array in question and you’ll get a CSV showing the Storage Group, Demand, Usage, and Growth like this: [box]SG,Read More →