I have been trying to find a good way to review the System Activity Reports (besides using the 'SmartConsole - Monitor function/graphs' and finally found a good solution after digging around the internet for a while.
The SAR data is stored in /var/log/sa/ directory.
There are two types of files contained there. The sa## file is the binary information and the sar## files are in human readable format.
By running the following command, you can get file 01 to 30 concatenated into a single file.
ls /var/log/sa/sa?? | xargs -i sar -A -f {} > /tmp/sar_$(uname -n).txt
Once you have this file (it's 50 to 100 mb) you can then go to this web site (https://sarchart.dotsuresh.com/) and drag the file across to it, and it will then parse it and provide the ability to dig into the graphs that are available.
Let me know if anyone else has a better solution.
Paul G, CCSM