lanix343 Basic Pleskian Oct 11, 2020 #1 Hello, How to see which customer accounts use the most CPU. I can only see the general CPU usage but I think that some accounts are using a lot of CPU power. Is there any way I can see what the CPU Usage that is visible in Plesk is composed of? Thanks!
Hello, How to see which customer accounts use the most CPU. I can only see the general CPU usage but I think that some accounts are using a lot of CPU power. Is there any way I can see what the CPU Usage that is visible in Plesk is composed of? Thanks!
Bitpalast Plesk addicted! Plesk Guru Oct 11, 2020 #2 Try this command line command to see the highest cpu power consumers: Code: watch "ps aux | sort -nrk 3,3 | head -n 20" The customer behind that can easily be identified by either the domain given in the right part of the display or through the user id.
Try this command line command to see the highest cpu power consumers: Code: watch "ps aux | sort -nrk 3,3 | head -n 20" The customer behind that can easily be identified by either the domain given in the right part of the display or through the user id.
lanix343 Basic Pleskian Oct 11, 2020 #3 Great, I will try it out. Is there a way to actually statistically get these values over time like with Grafna?
Great, I will try it out. Is there a way to actually statistically get these values over time like with Grafna?
Bitpalast Plesk addicted! Plesk Guru Oct 11, 2020 #4 Not in Plesk, but maybe there is some kind of software for Linux that I don't know with which this can be done.
Not in Plesk, but maybe there is some kind of software for Linux that I don't know with which this can be done.
lanix343 Basic Pleskian Oct 11, 2020 #5 Thanks for your quick help! your command has already helped me a lot!