XavierBerger / RPi-Monitor

Real time monitoring for embedded devices
https://xavierberger.github.io/RPi-Monitor-docs/index.html
GNU General Public License v3.0
1.16k stars 176 forks source link

Is RPIMonitor development at a halt? #372

Open wsegatto opened 3 years ago

wsegatto commented 3 years ago

Hey everyone,

I don't want to be rude or anything, but I'm wondering whether RPIMonitor development is still ongoing or if it has been stopped. It seems there are 5+ years old requests unanswered and I see no new versions coming out... I use it every day and it's fundamental for my monitoring purposes, but I wanted to have your input.

This is my setup: image

4k3or3et commented 3 years ago

I would like to know that also.

ashishdlp commented 2 years ago

Hey everyone,

I don't want to be rude or anything, but I'm wondering whether RPIMonitor development is still ongoing or if it has been stopped. It seems there are 5+ years old requests unanswered and I see no new versions coming out... I use it every day and it's fundamental for my monitoring purposes, but I wanted to have your input.

This is my setup: image

Hey WIll can I know how do you configure rpi monitor to show live network usage. (i'm running rpi monitor in armbian on asus tinker board using usb tethering from my old phone and the sbc as my router if that matters)

TIA

wsegatto commented 2 years ago

Hi @tegeek1445, I'm using native eth0 statistics of my linux box. For the other parameters I'm running bash or python scripts to write out to a TXT not to overload RPI with too many processes and calculations.

dynamic.10.name=net_received
dynamic.10.source=/sys/class/net/eth0/statistics/rx_bytes
dynamic.10.regexp=(.*)
dynamic.10.postprocess=$1*-1
dynamic.10.rrd=DERIVE
dynamic.10.max=0

dynamic.11.name=net_send
dynamic.11.source=/sys/class/net/eth0/statistics/tx_bytes
dynamic.11.regexp=(.*)
dynamic.11.postprocess=
dynamic.11.rrd=DERIVE
dynamic.11.min=0

Full network file here: https://pastebin.com/6erjuzeW

wsegatto commented 2 years ago

Oh, and the panel now looks like this: image

asyba commented 1 year ago

Hey everyone,

I don't want to be rude or anything, but I'm wondering whether RPIMonitor development is still ongoing or if it has been stopped. It seems there are 5+ years old requests unanswered and I see no new versions coming out... I use it every day and it's fundamental for my monitoring purposes, but I wanted to have your input.

This is my setup: image

niceee, do you know if possible to show data from doing the command top? that show top process that consume ram, cpu, etc to monitor that?