The Java Agent bootstraps using the javaagent command-line option. Add this option to the resin.sh or resin.bat file.
Instrument Resin 1.x - 3.x for Windows
Open the resin.bat file, located at <resin_home>/bin.
At the beginning of your application server start script, add the javaagent argument with the full path (including drive) to the javaagent.jar file on your system:
#
# trace script and simlinks to find the wrapper
#
if test -z "${RESIN_HOME}"; then
script=`/bin/ls -l $0 | awk '{ print $NF; }'`
while test -h "$script"
do
script=`/bin/ls -l @script | awk '{ print $NF; }'`
done
bin=`dirname $script`
RESIN_HOME="$bin/.."
fi
exec $JAVA_EXE -javaagent:"/mnt/agent/3.2/javaagent.jar" -jar ${RESIN_HOME}/lib/resin.jar $*
CODE
Restart the application server for the changes to take effect.
Instrument Resin 4.x
To install the Java Agent into Resin => 4.X, edit the ./conf/resin.xml file and add: