I'm tired of console measuring of memory usage
while true; do
ps -C <ProgramName> -o pid=,%mem=,vsz= >> /tmp/mem.log
gnuplot /tmp/show_mem.plt
sleep 1
done &
- Measuring and graphing memory usage of local processes
- Supported python versions are
3.5+
- Python3.7 is a preferable interpreter
- run
pip3 install mem_usage_ui
orpip install mem_usage_ui
- Run in shell:
mem_usage_ui
- Default browser will be opened automatically
- Running on
http://localhost:8080
- Install requirements:
pip install -r requirements.txt
- Run app:
python -m mem_usage_ui --debug=True
- Go to frontend directory:
cd frontend
- Install dependencies:
npm install
- Create (and watch) dev build -
npm run dev
- Before pull request please create a production build
npm run prod