up vote 0 down vote favorite
share [g+] share [fb]

Is there an extension for cPanel, an application, or server-side script that can simply output the currently used resources on my server, pointing out the ones causing temporary high loads so they can be taken down or fixed as issues arise?

Is there a way of determining if files causing high server load are my own on a shared serer?

link|improve this question

60% accept rate
feedback

1 Answer

you could try:

watch -d -n <interval> top -b -n 1

if you have a better idea of what kind of load is being caused (i.e., disk, cpu, memory, etc...), you can generally use watch + one of the stat commands to narrow it down like:

watch -d -n 2 vmstat -a
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.