USR_BIN_LINUX Telegram 619
Monitor System Resource Usage (CPU, Memory, Disk) with Shell Scripts

В этой статье показано, как написать простые, но мощные Shell-скрипты для мониторинга использования процессора, памяти и корневого раздела системы. Когда утилизация ресурса превышает предустановленное значение предупреждения, скрипт автоматически отправит оповещение по электронной почте. Некоторые примеры:

Память:
mem=$(free | awk '/Mem:/ {printf "%.2f", $3/$2 * 100.0}')

Диск:
disk=$(df -h / | awk 'NR==2 {print $5}' | sed 's/%//')

Процессор:
cpu=$(top -bn1 | grep "Cpu(s)" | sed "s/.*, *\([0–9.]*\)%* id.*/\1/" | awk '{print 100 — $1}')


Подробности в статье

❗️Статья на Медиум
👍10



tgoop.com/usr_bin_linux/619
Create:
Last Update:

Monitor System Resource Usage (CPU, Memory, Disk) with Shell Scripts

В этой статье показано, как написать простые, но мощные Shell-скрипты для мониторинга использования процессора, памяти и корневого раздела системы. Когда утилизация ресурса превышает предустановленное значение предупреждения, скрипт автоматически отправит оповещение по электронной почте. Некоторые примеры:

Память:

mem=$(free | awk '/Mem:/ {printf "%.2f", $3/$2 * 100.0}')

Диск:
disk=$(df -h / | awk 'NR==2 {print $5}' | sed 's/%//')

Процессор:
cpu=$(top -bn1 | grep "Cpu(s)" | sed "s/.*, *\([0–9.]*\)%* id.*/\1/" | awk '{print 100 — $1}')


Подробности в статье

❗️Статья на Медиум

BY /usr/bin




Share with your friend now:
tgoop.com/usr_bin_linux/619

View MORE
Open in Telegram


Telegram News

Date: |

Hashtags are a fast way to find the correct information on social media. To put your content out there, be sure to add hashtags to each post. We have two intelligent tips to give you: The imprisonment came as Telegram said it was "surprised" by claims that privacy commissioner Ada Chung Lai-ling is seeking to block the messaging app due to doxxing content targeting police and politicians. Today, we will address Telegram channels and how to use them for maximum benefit. The channel also called on people to turn out for illegal assemblies and listed the things that participants should bring along with them, showing prior planning was in the works for riots. The messages also incited people to hurl toxic gas bombs at police and MTR stations, he added. Select “New Channel”
from us


Telegram /usr/bin
FROM American