Resinスタートアップ設定
Java エージェントは、javaagent コマンドラインオプションを使いブートストラップします。このオプションを、resin.sh ファイルまたは resin.bat ファイルに追加します。
Gain operational intelligence by collecting, indexing, and visualizing data using a powerful on-premises engine for actionable insights.
Release NotesCollect, index, and visualize your data in the cloud for better operational intelligence.
Release NotesDiscover, share, and install apps and add-ons with the Splunk community on Splunkbase. Publish your own or add others to your Splunk platform instance.
Gain operational intelligence by collecting, indexing, and visualizing data using a powerful on-premises engine for actionable insights.
Release NotesStreamline your security operations with a SOAR system that integrates orchestration, playbook automation, and case management to enhance threat response.
Prevent disruptions and optimize operations when you monitor and analyze your IT service with predictive analytics and machine learning.
Release NotesCollect, index, and visualize your data in the cloud for better operational intelligence.
Release NotesGain end-to-end visibility, troubleshoot in real-time, and optimize performance across infrastructure, applications, and user interfaces.
Release NotesCloud-based application performance monitoring with AI-powered insights for hybrid and multi-cloud environments.
Release NotesSelf-hosted application observability for regulated and sensitive environments.
Release NotesPre-packaged, self-contained application monitoring solution based on modern Kubernetes architecture.
Release NotesBuild and deliver apps and integrations with SDKs, APIs and tools.
Access and share apps and add-ons with the Splunk community on Splunkbase. Publish your own apps, or download and install others on your Splunk platform instance.
Explore information on best practices, connect with community, or contact support.
Java エージェントは、javaagent コマンドラインオプションを使いブートストラップします。このオプションを、resin.sh ファイルまたは resin.bat ファイルに追加します。
resin.batアプリケーションサーバー起動スクリプトの先頭で、javaagent 引数をフルパス(ドライブを含む)で、システムの javaagent.jar ファイルに追加する。
exec JAVA_EXE -javaagent:"<drive>:\<agent_home>\javaagent.jar"
resin.shアプリケーションサーバー起動スクリプトの先頭で、javaagent 引数をフルパスで、システムの javaagent.jar ファイルに追加する。
exec $JAVA_EXE -javaagent:"<agent_home>/javaagent.jar" <...>
#
# 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 $*
ファイルを編集し、以下を追加します。
<jvm-arg>-Xmx512m</jvm-arg>
<jvm-arg>-javaagent:<agent_home>/javaagent.jar</jvm-arg>