2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00
fhem-mirror/fhem/www/gplot/SM_RAM.gplot
hexenmeister 0a2b131831 change: RAM limit 2000 MB
git-svn-id: https://svn.fhem.de/fhem/trunk@9019 2b470e98-0d58-463d-a4d8-8e2adae1ed80
2015-08-03 21:13:34 +00:00

31 lines
634 B
Plaintext

# SYSMON
#
# Visualisierung: RAM-Nutzung
#
# Beispiel aus dem Logfile:
# 2013-11-19_21:51:41 sysmon ram: Total: 485 MB, Used: 118 MB, 24.33 %, Free: 366 MB
#
set terminal png transparent size <SIZE> crop
set output '<OUT>.png'
set xdata time
set timefmt "%Y-%m-%d_%H:%M:%S"
set xlabel " "
set y2tics
set title '<L1>'
set grid xtics y2tics
set y2label "RAM-Nutzung MB"
set y2range [0:2000]
#FileLog 5:ram\x3a:0:
#FileLog 8:ram\x3a:0:
plot \
"< egrep 'total:' <IN>"\
using 1:5 axes x1y2 title '' ls l0 lw 2 with lines
plot \
"< egrep 'used:' <IN>"\
using 1:8 axes x1y2 title 'Verwendet' ls l2fill lw 0.5 with lines