I don't have my own site to post this on at the moment... but here's something that may be useful to you java people out there.
SORRY if these are not terribly flexible in terms of command line options at the moment, but they should work fine for tomcat at least.
Requires an installed JDK that includes the jstat tool. Make sure the JDK bin folder is on the path.
This was written for linux prettymuch. Might work on other flavors of ~unixes, but this isn't compatible with windows.
I wanted to build a sysstat-like monitoring tool for tomcat, but I didn't find one.
I wrote one up that uses jstat to pull the statistics. You may have to run jsr with sudo, because I was lazy about the column heading output. It depends on the permissions of jstat on your system.
As far as interpreting these results... i'm not sure. I would like some answers on that.
Right now these scripts are locked to look for tomcat via the command pgrep -f tomcat ( a process command line containing the word "tomcat"). That can be changed as needed of course...
jsr:
Usage: jsr <jstat option> [yyyy-mm-dd]
Outputs logged statistics in a table given the jstat view to use.
This includes the date/time and PID of the java process in addition to the jstat output.
jstat option:
Example: -gcutil.
For more see the jstat man page.
yyyy-mm-dd:
Optional. The date to get data for. This corresponds directly to the files /var/log/ja/jayyyy-mm-dd* .
Default data shown will be today's.
jstatdc:
Usage: jstatdc
Collects data for the jsr reports
Data is stored for each of the jstat options in /var/log/ja/.
Files are named like this: jayyyy-mm-dd-<jstat option>
These are CSV files, so they can be put together easily to make charts.
crontab:
Add this to your /etc/crontab to automate collection and removal of logs after a time period.
#jstat monitoring data collection
*/10 * * * * root <location of jstatdc>/jstatdc
#Remove old data from <NUMDAYS> ago at 12:01 am every day
1 0 * * * root /usr/bin/find /var/log/ja/* -mtime +<NUMDAYS> -exec rm -f \{\} \;
This collects data every 10 minutes. Of course, change to the number of days of history you wish to keep. Also change the location of jstatdc accordingly.
jsr Source
#!/bin/bash
#jstat data viewer
# $1 - operation, see jstat doc
# $2 - date string yyyy-mm-dd, optional.
# find jstat
jstatexe="jstat"
# if your JDK bin folder is not on the path, this won't work. (/usr/java/jdk1.6.0_24/bin/)
# get day to see
ds=$2;
if [ -z $ds ];
then
ds=$(date +%Y-%m-%d);
fi
olist=("-class" "-compiler" "-gc" "-gccapacity" "-gccause" "-gcnew" "-gcnewcapacity" "-gcold" "-gcoldcapacity" "-gcpermcapacity" "-gcutil" "-printcompilation");
for o in ${olist[@]}; do
if [[ $1 == $o ]];
then
jsmFile="/var/log/ja/ja$ds$o";
echo "Jstat $o data for $ds";
(echo -n "Date,PID," && eval $jstatexe $1 $(pgrep -f tomcat) | sed "s/^[ ]\+//gi" | sed "s/[ ]\+$//gi" | sed "s/^[0-9].*$//gi" | sed "s/[ ]\+/,/gi" | sed "/^$/d" && (cat $jsmFile | sed "s/^[^0-9].*$//gi")) | column -s, -t
fi
done
jstatdc Source
#!/bin/bash
#jstat data collector.
# find jstat
jstatexe="jstat"
# if your JDK bin folder is not on the path, this won't work. (/usr/java/jdk1.6.0_24/bin/)
#create the log directory if it doesnt exist
if [ ! -d "/var/log/ja" ];
then
mkdir /var/log/ja;
fi
ds=$(date +%Y-%m-%d);
olist=("-class" "-compiler" "-gc" "-gccapacity" "-gccause" "-gcnew" "-gcnewcapacity" "-gcold" "-gcoldcapacity" "-gcpermcapacity" "-gcutil" "-printcompilation");
for o in ${olist[@]}; do
jsmFile="/var/log/ja/ja$ds$o";
if [ ! -f $jsmFile ];
then
echo "Jstat $o data for $(date +%D)" > $jsmFile;
fi
echo -n "$(date +'%D %H:%M:%S'),$(pgrep -f tomcat)," >> $jsmFile;
eval $jstatexe $o $(pgrep -f tomcat) | sed "s/^[ ]\+//gi" | sed "s/[ ]\+$//gi" | sed "s/^[^0-9].*$//gi" | sed "s/[ ]\+/,/gi" | sed "/^$/d" >> $jsmFile;
done
License: none (limiting terms of use of this site)