jmeter - How to see the usage percentage of different components in same Virtual Machine -


i testing website through jmeter, components lms cms mongodb , mysql in same single vm

how view individual usage stats? preferably in graph

you need monitor processes each service want monitor on vm. example if want monitor , log top 10 cpu hungry processes log file in linux use below command:

while true; (echo "%cpu %mem args $(date)" && ps -e -o pcpu,pmem,args --sort=pcpu | cut -d" " -f1-5 | tail) >> ps.log; sleep 5; done 

then can utilize data in log file plot graphs accordingly. other option use third party apm tools new relic or app dynamics monitor vm , can automatic reports monitored processes.


Comments

Popular posts from this blog

java - HTTP Status 500 - An exception occurred processing JSP page /second.jsp at line 15 -

php - Using str_replace to translate a MySQL Table in html -

asp.net mvc - Cannot display error message on Editor or EditorFor -