포도가게의 개발일지
Node js profiling 본문
반응형
node --prof 실행파일명
node --prof app.js
그럼 isolate-0x682b200-15100-v8.log 로그파일 생성
하지만 그냥 파일 열면 이해가 안가기 때문에 번역이 필요하다
첫번째 방법(log -> text file로 변환후 읽는다)
node --prof-process isolate-0xnnnnn-v8.log > processed.txt
두번째 방법( log -> flame graph)
node --prof-process --preprocess -j isolate*.log | flamebearer
'프로젝트' 카테고리의 다른 글
[Node] Chat Server 부하줄이기(분산처리)[1] (2) | 2022.02.07 |
---|---|
[Node] Chat Server 부하줄이기(분산처리)[2] (0) | 2022.02.02 |
heartalk stress test (0) | 2021.12.04 |
heartalk 개발 (0) | 2021.11.19 |
NestJS 초기 명령어(CLI) & 기초 (0) | 2021.11.06 |
Comments