I have a long automation suite that runs and generates a log file with something like:
Time, API, Min, Max, Average, Current, Invocation
2013-07-22 14:52:39, api1, 167.0, 167.0, 167.0, 167.0, 1
2013-07-22 14:52:39, api1, 167.0, 169.0, 168.0, 169.0, 2
...
...
Once the test is done, I want to automatically gather up the Unix machine statistics via sar (or nmon, but trying sar first). The sar command is something like this:
sar -i 900 -f /var/log/sa/sa22 -s 10:00:00 -e 18:00:00
I already have a Java class that will SSH into any number of machines and run a static command read from an XML file. It will save the output to a file for later parsing.
My dilemma is that I want to automate the running of the sar command for the duration of the test (which is of course going to change). For example, I want to get the start and end times from the log file above and run sar with those dates. With Unix shell, I can get those dates as follows:
SECOND_LINE=`sed -n '2p' ${LOG_DIR}/${CURRENT_DATE}_results.txt`
START_DATE=`echo ${SECOND_LINE} | cut -c9-10`
START_TIME=`echo ${SECOND_LINE} | cut -c12-13,15-16`
LAST_LINE=`sed -n '$p' ${LOG_DIR}/${CURRENT_DATE}_results.txt`
END_DATE=`echo ${LAST_LINE} | cut -c9-10`
END_TIME=`echo ${LAST_LINE} | cut -c12-13,15-16`
I could pass those into my Java class and form the sar command each time or I could do some find and replaces on the text file that my Java class reads from with the commands. However, I am not sure how to handle if the automation suite runs for multiple days or crosses into another month.
Is there a better way to accomplish what I want or should I continue down my line of thinking? My end goal is that I want the sar data (CPU utilization, disk IO, memory usage) for the entire duration of my test, which could be minutes or days.
I come with a basic script handling some options. It is not an answer at all, just an approach that is too broad to post in comments:
To execute with
./file <last_day>
.Note that the case when
last_day
is in the next month is not considered. Should check also the last day of the month (best way, withls -l /var/log/sa
), etc.That said, I think that it is way better to handle this with Java if it provides you such fancy date parsing.
Examples