Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- CKA
- 티스토리챌린지
- MySQL
- 컨텍스트 엔지니어링
- SRE
- CloudWatch
- kotlin
- tucker의 go 언어 프로그래밍
- go
- CKA 기출문제
- APM
- golang
- 코틀린 코루틴의 정석
- AWS EKS
- Spring
- aws
- 오블완
- kotlin coroutine
- 기록으로 실력을 쌓자
- AI
- 공부
- 바이브코딩
- minikube
- kotlin querydsl
- Java
- Linux
- PETERICA
- Kubernetes
- Pinpoint
- 정보처리기사 실기 기출문제
Archives
- Today
- Total
피터의 개발이야기
[APM] PinPoint 설치 - 4편 - Agent 본문
반응형

개요
APM의 대상이 되는 Aplication과 연동하는 Agent를 설치한다.
PinPoint Agent 다운로드
wget https://github.com/naver/pinpoint/releases/download/1.8.4/pinpoint-agent-1.8.4.tar.gz -P /Users/deseo/study/pinpoint/files
압축해제
tar zxvf ~/study/pinpoint/file/pinpoint-agent-1.8.4.tar.gz -C ~/study/pinpoint/pinpoint-agent
PinPoint Agent config 설정
#collector 내부아이피 설정
profiler.collector.ip=192.168.33.34
# TCP 통신 설정
profiler.statdatasender.transport.type=TCP
profiler.spandatasender.transport.type=TCP
Web Aplication 실행 시 설정방법
#setenv.sh JVM 환경변수 추가
export JAVA_OPTS="$JAVA_OPTS \
-javaagent:/Users/deseo/study/pinpoint/pinpoint-agent/pinpoint-bootstrap-1.8.4.jar \
-Dpinpoint.agentId=web1 \
-Dpinpoint.applicationName=Web1"
방화벽 처리
방화벽이 막혔을 경우 에러가 발생하였다.

collecter 서버 방화벽, 9994-9996 포트열기
sudo firewall-cmd --permanent --zone=public --add-port=9994-9996/tcp
Web Aplication 시작 후 구동확인

특정경로 수집 제거
서버의 헬스체크 등 수집이 필요없는 경우 설정
profiler.tomcat.excludeurl=/health/check,/main
APP제거
AppName 삭제는 다음과 같이 api를 제공
http://master서버:8080/admin/removeApplicationName.pinpoint?applicationName=APP&password=admin
참조
https://yamoe.tistory.com/544
반응형
'DevOps > Pinpoint' 카테고리의 다른 글
| [docker] PinPoint(v1.8.4) docker image만들기 (0) | 2021.02.12 |
|---|---|
| [Spring] Pinpoint 활용한 bootJar 실행 Shellscript 정리 (0) | 2021.01.08 |
| [APM] PinPoint 설치 - 3편 - Web, Collector (0) | 2020.12.15 |
| [APM] PinPoint 설치 - 2편 - hbase 스키마 생성 (0) | 2020.12.14 |
| [APM] PinPoint 설치 - 1편 - JAVA, hbase 설치 (0) | 2020.12.13 |
Comments