[Elastic] APM Agent 설치
[설치] [APM Agent 다운로드] https://search.maven.org/search?q=g:co.elastic.apm%20AND%20a:elastic-apm-agent [Tomcat 설정] export CATALINA_OPTS="$CATALINA_OPTS -javaagent:/path/to/elastic-apm-agent-<version>.jar" (다운로드받은 Agent 경로 및 파일명) export CATALINA_OPTS="$CATALINA_OPTS -Delastic.apm.service_name=my-cool-service” (서비스 이름 아무거나 지정해 주세요.) export CATALINA_OPTS="$CATALINA_OPTS -Delastic.apm.application_packages=org.example,org.another.example” (도메인명 아무거나 지정해 주세요.) export CATALINA_OPTS="$CATALINA_OPTS -Delastic.apm.server_urls= http://1.234.25.136:40002 ” (APM 서버 ip 및 포트 이럴로 해주세요.) [Java 프로그램 설정] java -javaagent:/path/to/elastic-apm-agent-<version>.jar (다운로드받은 Agent 경로 및 파일명) -Delastic.apm.service_name=my-cool-service -Delastic.apm.application_packages=org.example,org.another.example -Delastic.apm.server_urls=http://1.234.25.136:40002 -jar my-application.jar ( 실행할 프로그램 )