Aviso quando a RAM disponível se aproxima de zero

7

Este é um follow-up para Memory limiting soluções para aplicações gananciosas que podem travar o SO? : ulimit e cgroups não são amigáveis ao usuário e, além disso, não funcionam com aplicativos que geram processos separados, como o Chrome / Chromium para cada nova (grupo de) guias.

A solução simples e eficaz, usada pelo Windows 7 na verdade, é avisar ao usuário que o sistema operacional está com pouca memória. Esse simples pop-up de aviso impediu que eu tivesse qualquer congelamento do sistema causado por pouca memória no Windows, enquanto eu continuava a usá-los nas distribuições Ubuntu que eu estava testando ao vivo (onde o disco montado em RAM consumia apenas 2GB).

Portanto, há alguma maneira de avisar automaticamente o usuário de que a RAM disponível está próxima de zero, sem que o usuário tenha que ficar de olho em algum gadget de monitoramento de memória? Certamente Conky poderia ser configurado para fazer isso?

    
por Dan Dascalescu 30.12.2012 / 08:25

5 respostas

4

Verifique estes scripts: Precisa de alerta de aplicativo / script quando a memória do sistema está se esgotando

#!/bin/bash

#Minimum available memory limit, MB
THRESHOLD=400

#Check time interval, sec
INTERVAL=30

while :
do

    free=$(free -m|awk '/^Mem:/{print $4}')
    buffers=$(free -m|awk '/^Mem:/{print $6}')
    cached=$(free -m|awk '/^Mem:/{print $7}')
    available=$(free -m | awk '/^-\/+/{print $4}')

    message="Free $free""MB"", buffers $buffers""MB"", cached $cached""MB"", available $available""MB"""

    if [ $available -lt $THRESHOLD ]
        then
        notify-send "Memory is running out!" "$message"
    fi

    echo $message

    sleep $INTERVAL

done

PHP:

#!/usr/bin/php
<?php
$alert_percent=($argc>1)?(int)$argv[1]:90;
//$interval=($argc>2):(int)$argv[2]:25;



//while(true)
//{
 exec("free",$free);

$free=implode(' ',$free);
preg_match_all("/(?<=\s)\d+/",$free,$match);

list($total_mem,$used_mem,$free_mem,$shared_mem,$buffered_mem,$cached_mem)=$match[0];

$used_mem-=($buffered_mem+$cached_mem);

$percent_used=(int)(($used_mem*100)/$total_mem);

if($percent_used>$alert_percent)
exec("notify-send 'Low Memory: $percent_used% used'");

//sleep($interval);
//}
exit();
?>
    
por StandardSpecification 17.09.2013 / 21:11
1

Outro script que escrevi para esse propósito:

#!/bin/bash
# Copyright 2019, Mikko Rantalainen
# License: MIT X License

# Minimum available memory until warning, default to 10% of total RAM (MiB)
THRESHOLD=$(grep "MemTotal:" /proc/meminfo | awk '{ printf "%d", 0.1*$2/1024}')
INTERVAL=60s

echo "Emitting a warning if less than $THRESHOLD MiB of RAM is available..."

while true; do
    meminfo=$(cat /proc/meminfo)
    free=$(echo "$meminfo" | grep "MemFree:" | awk '{ printf "%d", $2/1024}')
    available=$(echo "$meminfo" | grep "MemAvailable:" | awk '{ printf "%d", $2/1024}')
    inactive=$(echo "$meminfo" | grep "Inactive:" | awk '{ printf "%d", $2/1024}')
    reclaimable=$(echo "$meminfo" | grep "SReclaimable:" | awk '{ printf "%d", $2/1024}')
    usable=$(echo "$free + $inactive / 2 + $reclaimable / 2" | bc)
    if test -z "$available"; then
        message="Current kernel does not support MemAvailable in /proc/meminfo, aborting"
        notify-send "Error while monitoring low memory" "$message"
        echo "$message" 1>&2
        exit 1
    fi

    message="Available: $available MiB
Free: $free MiB
Maybe usable: $usable MiB"

    if [ "$available" -lt "$THRESHOLD" ]
        then
        notify-send -u critical "Low memory warning" "$message"
        echo "Low memory warning:"
    echo "$message"
    fi

    #echo "DEBUG: $message"
    sleep $INTERVAL
done
    
por 29.01.2019 / 08:35
0

Versão atualizada do script que funciona com livre de procps-ng 3.3.10

#!/bin/bash

#Minimum available memory limit, MB
THRESHOLD=400

#Check time interval, sec
INTERVAL=30

while :
do
    free_out=$(free -w -m)
    available=$(awk '/^Mem:/{print $8}' <<<$free_out)

    if (( $available < $THRESHOLD ))
        then
        notify-send -u critical "Memory is running out!" "Available memory is $available MiB"
        echo "Warning - available memory is $available MiB"    
    fi

    cat <<<$free_out
    sleep $INTERVAL
done
    
por 28.02.2019 / 11:25
0

Atualizado o script acima para também adicionar detalhes sobre os 3 principais processos com muita memória. Veja em link

Aqui está o próprio script:

#!/usr/bin/env bash

set -o errexit
set -o pipefail
set -o nounset

# If the language is not English, free will output localized text and parsing fails
LANG=en_US.UTF-8

THRESHOLD=500
INTERVAL=300
POPUP_DELAY=999999

# sleep some time so the shell starts properly
sleep 60

while :
do
    available=$(free -mw | awk '/^Mem:/{print $8}')
    if [ $available -lt $THRESHOLD ]; then
        title="Low memory! $available MB available"
        message=$(top -bo %MEM -n 1 | grep -A 3 PID | awk '{print $(NF - 6) " \t" $(NF)}')
        # KDE Plasma notifier
        kdialog --title "$title" --passivepopup "$message" $POPUP_DELAY
        # use the following command if you are not using KDE Plasma, comment the line above and uncomment the line below
        # please note that timeout for notify-send is represented in milliseconds
        # notify-send -u critical "$title" "$message" -t $POPUP_DELAY
    fi
    sleep $INTERVAL
done
    
por 06.03.2019 / 14:27
0

Variante usando RAM disponível , porcentagens e exibe notificações da área de trabalho quando chamado pelo cron (ou seja, o script de loop não precisa ser iniciado após a reinicialização):

#!/usr/bin/env bash

# dbus env var required when called via cron:
eval "export $(egrep -z DBUS_SESSION_BUS_ADDRESS /proc/$(pgrep -u $LOGNAME gnome-session)/environ | tr '
#!/usr/bin/env bash

# dbus env var required when called via cron:
eval "export $(egrep -z DBUS_SESSION_BUS_ADDRESS /proc/$(pgrep -u $LOGNAME gnome-session)/environ | tr '%pre%' '\n')";

AVAIL_THRESHOLD=5

free_output=$(free)
mem_total=$(awk '/^Mem:/{print $2}' <<< $free_output)
mem_avail=$(awk '/^Mem:/{print $7}' <<< $free_output)
mem_avail_m=$(bc <<< "scale=1; $mem_avail/1024")
percent_avail=$(bc <<< "scale=1; $mem_avail*100 /$mem_total")
should_warn=$(bc <<< "$percent_avail < $AVAIL_THRESHOLD")

if (( $should_warn )); then
    notify-send "Memory warning - only $percent_avail% ($mem_avail_m MB) available"
else
    echo "Memory OK - $percent_avail% ($mem_avail_m MB) available"
fi
' '\n')"; AVAIL_THRESHOLD=5 free_output=$(free) mem_total=$(awk '/^Mem:/{print $2}' <<< $free_output) mem_avail=$(awk '/^Mem:/{print $7}' <<< $free_output) mem_avail_m=$(bc <<< "scale=1; $mem_avail/1024") percent_avail=$(bc <<< "scale=1; $mem_avail*100 /$mem_total") should_warn=$(bc <<< "$percent_avail < $AVAIL_THRESHOLD") if (( $should_warn )); then notify-send "Memory warning - only $percent_avail% ($mem_avail_m MB) available" else echo "Memory OK - $percent_avail% ($mem_avail_m MB) available" fi
    
por 08.03.2019 / 01:06