diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-08-18 23:20:22 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-18 23:20:22 +0700 |
commit | dc8cfa6dfd1d95890b3e14c928e3d2064451a851 (patch) | |
tree | aa9b59aa925b2ff891e7219a0e38ede8ac6fe818 /src/op_mode/show_ram.sh | |
parent | afdde0000333fd720dcf7263cedcb018cf3c3b5f (diff) | |
parent | 3d94de9b56ef2a6030ef5cea8b307098688c949d (diff) | |
download | vyos-1x-dc8cfa6dfd1d95890b3e14c928e3d2064451a851.tar.gz vyos-1x-dc8cfa6dfd1d95890b3e14c928e3d2064451a851.zip |
Merge pull request #106 from alkersan/current
[op-mode] T1590 xml-style rewrite of 'show system' operations
Diffstat (limited to 'src/op_mode/show_ram.sh')
-rwxr-xr-x | src/op_mode/show_ram.sh | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/op_mode/show_ram.sh b/src/op_mode/show_ram.sh new file mode 100755 index 000000000..b013e16f8 --- /dev/null +++ b/src/op_mode/show_ram.sh @@ -0,0 +1,33 @@ +#!/bin/bash +# +# Module: vyos-show-ram.sh +# Displays memory usage information in minimalistic format +# +# Copyright (C) 2019 VyOS maintainers and contributors +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +MB_DIVISOR=1024 + +TOTAL=$(cat /proc/meminfo | grep -E "^MemTotal:" | awk -F ' ' '{print $2}') +FREE=$(cat /proc/meminfo | grep -E "^MemFree:" | awk -F ' ' '{print $2}') +BUFFERS=$(cat /proc/meminfo | grep -E "^Buffers:" | awk -F ' ' '{print $2}') +CACHED=$(cat /proc/meminfo | grep -E "^Cached:" | awk -F ' ' '{print $2}') + +DISPLAY_FREE=$(( ($FREE + $BUFFERS + $CACHED) / $MB_DIVISOR )) +DISPLAY_TOTAL=$(( $TOTAL / $MB_DIVISOR )) +DISPLAY_USED=$(( $DISPLAY_TOTAL - $DISPLAY_FREE )) + +echo "Total: $DISPLAY_TOTAL" +echo "Free: $DISPLAY_FREE" +echo "Used: $DISPLAY_USED" |