0

Let's say I want to know how much RAM and how much CPU I consumed after an hour of having the system started, but I don't want to have top opened and be looking at it all the time.

I want a program that can write the resource usage to some kind of graph so I can look at it and see which resources I have been using at what time. I don't need it to be CLI, maybe a web app or a docker...

Thanks in advance.

Zanna
  • 70,465
GBT55
  • 173
  • 1
  • 1
  • 5

1 Answers1

2

What you are looking for is system monitoring. I use monitorix It's open source system monitoring tool and exist in Ubuntu repository. You can install it via:

sudo apt install monitorix
sudo systemctl start monitorix

Then open the link in your browser :

http://127.0.0.1:8080/monitorix

More info: https://www.linode.com/docs/guides/how-to-use-monitorix-for-system-monitoring/ https://wiki.archlinux.org/title/monitorix

kenn
  • 5,162