Add the following keys to the standalone.conf file {code:bash} # Path to the agent home PINPOINT_AGENT_HOME="/opt/pinpoint/agent" # Pinpoint installed version PINPOINT_VERSION="1.6.0" # Application name. This will be used in pinpoint web app to find this application PINPOINT_APP_NAME=UPS # Unique ID for this agent instance PINPOINT_AGENT_ID=UPS-ETEAM
JAVA_OPTS="$JAVA_OPTS -Djboss.modules.system.pkgs=org.jboss.byteman,com.navercorp.pinpoint.bootstrap,com.navercorp.pinpoint.common,com.navercorp.pinpoint.exception" JAVA_OPTS="$JAVA_OPTS -javaagent:$PINPOINT_AGENT_HOME/pinpoint-bootstrap-1.6.0.jar" # Application name. This will be used in pinpoint web app to find this application JAVA_OPTS="$JAVA_OPTS -Dpinpoint.applicationName= UPS $PINPOINT_APP_NAME " # Unique ID for this agent instance JAVA_OPTS="$JAVA_OPTS -Dpinpoint.agentId= UPS-ETEAM $PINPOINT_AGENT_ID " {code} |
|