프로그래밍/잡동산이

[mongodb] 몽고디비 메모리 모니터링 GUI

Nadahacker 2023. 3. 26. 00:58
반응형

 

mongostat 는 텍스트로 나오는 모니터링 이라면 이번엔 GUI모드로 한번 해보겠다.

 

db.enableFreeMonitoring()

위명령어를 날리면 ~

{
	"state" : "enabled",
	"message" : "To see your monitoring data, navigate to the unique URL below. Anyone you share the URL with will also be able to view this page. You can disable monitoring at any time by running db.disableFreeMonitoring().",
	"url" : "https://cloud.mongodb.com/freemonitoring/cluster/-------",
	"userReminder" : "",
	"ok" : 1
}

이렇게 나오게 되는데 위에 url부분을 복사 해서 웹브라우져에 넣게 되면

 

thumbnail

 

모니터링 가능한 모든 정보가 나오게 된다. 

 

반응형