본문 바로가기

DATABASE/Mongo DB

04.Mongo DB 모니터링

1. mongostat 명령을 입력하여 콘솔 모드로 진입합니다.

 데이터베이스의 CRUD ( insert, query, update, delete ) 스탭샷으로 캡쳐해 유형별로 구분하여 보여줍니다.

 

명령어 실행예시
항목설명 참조주소 https://gguriya.tistory.com/143

 # 기본
 ./mongostat --host [호스트 아이피] -[계정] -[패스워드] --authenticationDatabase admin

 # 출력횟수 지정
 ./mongostat --host [호스트 아이피] -[계정] -[패스워드] --authenticationDatabase admin --rowcount=3

 # json 형식출력
 ./mongostat --host [호스트 아이피] -[계정] -[패스워드] --authenticationDatabase admin --rowcount=3 --json

2. mongotop 명령을 입력하여 콘솔 모드로 진입합니다.

컬렉션 단위 읽기와 쓰기 활동의 통계정보를 추적하여 보여줍니다.

 # 기본적인 출력
 ./mongotop --host 192.168.XXX.XXX -uroot -pXXXX --authenticationDatabase admin

 # DB마다 락이 존재하는지 확인
./mongotop --host 192.168.XXX.XXX -uroot -pXXXX --authenticationDatabase admin --locks

 # 3번 출력하고 json방식으로 출력
  ./mongotop --host 192.168.XXX.XXX -uroot -pXXXX --authenticationDatabase admin --rowcount=3 --json

참고자료 페이지

https://m.blog.naver.com/PostView.nhn?blogId=theswice&logNo=220760949839&proxyReferer=https%3A%2F%2Fwww.google.com%2F

'DATABASE > Mongo DB' 카테고리의 다른 글

05. Mongo DB 데이터 삭제  (0) 2019.12.26
03. Mongo DB - Commend 활용 / 계정 생성  (0) 2019.12.26
02. Mongo DB 서비스 등록 ( centos )  (0) 2019.12.26
01. Cent OS Mongo DB 설치  (0) 2019.12.26
00.No SQL 데이터베이스  (0) 2019.11.21