-2

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?

Peter
  • 193
  • 1
  • 8
  • 1
    This question appears to be off-topic because it concerns the use of shared web hosting by end users or resellers, rather than the administration of web hosting. – Jenny D Jun 28 '13 at 08:53

1 Answers1

1

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
Greeblesnort
  • 1,759
  • 8
  • 10