BASH_SRV Telegram 102
📌 Мониторинг процессов с высоким потреблением CPU

Скрипт, который покажет топ-5 процессов по загрузке CPU.


ps -eo pid,comm,%cpu --sort=-%cpu | head -n 6


🔍 Что делает этот скрипт:

⚫️ps -eo pid,comm,%cpu — выводит PID, команду и использование CPU.
⚫️--sort=-%cpu — сортирует по убыванию загрузки CPU.
⚫️head -n 6 — берёт первые 5 процессов + строка заголовков.

💡 Можно повесить это на cron или закинуть в watch, чтобы отслеживать в реальном времени:


watch -n 5 'ps -eo pid,comm,%cpu --sort=-%cpu | head -n 6'


👉@bash_srv
Please open Telegram to view this post
VIEW IN TELEGRAM
👍91🔥1



tgoop.com/bash_srv/102
Create:
Last Update:

📌 Мониторинг процессов с высоким потреблением CPU

Скрипт, который покажет топ-5 процессов по загрузке CPU.


ps -eo pid,comm,%cpu --sort=-%cpu | head -n 6


🔍 Что делает этот скрипт:

⚫️ps -eo pid,comm,%cpu — выводит PID, команду и использование CPU.
⚫️--sort=-%cpu — сортирует по убыванию загрузки CPU.
⚫️head -n 6 — берёт первые 5 процессов + строка заголовков.

💡 Можно повесить это на cron или закинуть в watch, чтобы отслеживать в реальном времени:


watch -n 5 'ps -eo pid,comm,%cpu --sort=-%cpu | head -n 6'


👉@bash_srv

BY Bash Советы




Share with your friend now:
tgoop.com/bash_srv/102

View MORE
Open in Telegram


Telegram News

Date: |

Add up to 50 administrators Your posting frequency depends on the topic of your channel. If you have a news channel, it’s OK to publish new content every day (or even every hour). For other industries, stick with 2-3 large posts a week. The administrator of a telegram group, "Suck Channel," was sentenced to six years and six months in prison for seven counts of incitement yesterday. Hui said the messages, which included urging the disruption of airport operations, were attempts to incite followers to make use of poisonous, corrosive or flammable substances to vandalize police vehicles, and also called on others to make weapons to harm police. Although some crypto traders have moved toward screaming as a coping mechanism, several mental health experts call this therapy a pseudoscience. The crypto community finds its way to engage in one or the other way and share its feelings with other fellow members.
from us


Telegram Bash Советы
FROM American