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

python - No exponential form of the z-axis in matplotlib-3D-plots -

excel vba - VBA Proxy auto-configuration for http requests -

php - phpWord - Tables with borders in headers/footers -