Thursday, July 17, 2014

Introducing vtop — A Terminal Activity Monitor in Node.js

Command-line tools like “top” make it difficult to see CPU usage across multi-process applications (like Apache and Chrome), spikes over time, and memory usage.
That’s why we created vtop.
Vtop is a free and open source activity monitor for the command line. It’s written in node.js and can be easily extended. Why not check out the source code?

How to install

If you haven’t already got Node.js, then download that first, then run:
sudo npm install -g vtop

Running

This is pretty simple too.
vtop

Keyboard shortcuts

  • Press ‘u’ to update to the latest version of vtop.
  • Arrow up or k to move up the process list.
  • Arrow down or j to move down.
  • g to go to the top of the process list.
  • G to move to the end of the list.
  • dd to kill all the processes in that group

FAQs

How does it work?

It uses Unicode braille characters to draw CPU and Memory charts, helping you visualise spikes. We also group processes with the same name together.

I think the CPU % is coming out wrong.

We calculate the CPU percentage as a total of your overall system power. 100% is all cores and HyperThreads maxed out. This is different to how Apple Activity monitor works.

Can I change the color scheme?

Sure, just do:
vtop --theme wizard
This loads the theme file in themes/ with the same name. Make your own and send me a Pull Request
You could add this to your aliases if you’d like to use it always.
alias vtop="vtop --theme brew"

What about measuring server req/s, log entries, etc etc?

Yeah that’s on the list. Feel free to send a pull request though. Check out the sensors/ folder.

What license is this under?

MIT – do what you like with it.

I have another problem that’s not answered here

Please open a ticket and we’ll take a look for you.

Interested in working at Parallax?

We have a front-end developer position open at the moment

Related Posts:

  • Quy định về tên miền Việt Nam (.VN) Định nghĩa các đuôi tên miền¶ COM.VN: Dành cho tổ chức, cá nhân hoạt động thương mại. BIZ.VN: Dành cho các tổ chức, cá nhân hoạt động kinh doanh, tương đương với tên miền COM.VN. EDU.VN: Dành cho các tổ chức, cá nhân hoạt đ… Read More
  • Compress and Uncompress Files1) To compress files: Examples: tar cvf abc.tar a1.ps a2.tex adir/* # compress files to the file abc.tar gzip -9 abc.tar /* # create abc.tar.gz file. tar cvfz abc.tar.gz a1.ps a2.tex adir/* # directly create abc.tar.gz file … Read More
  • Vòng đời của tên miền Quốc tếMỗi tên miền từ khi được khởi tạo đến lúc ngưng sử dụng đều có một "vòng đời" riêng của nó, thậm chí có những tên miền còn sở hữu nhiều vòng đời.Dưới đây, chúng tôi sẽ trình bày vòng đời của một số tên miền quốc tế thường sử … Read More
  • Config file mysql server Beyond the defaults In the previous article we covered a basic MySQL server setup on CentOS Linux. We set the root password, created a database, and created a user for the database. Now let's look at MyS… Read More
  • Vòng đời của tên miền VNTên miền ở trạng thái tự do (Available) => Chủ thể đăng ký sử dụng => Tên miền hết hạn. Sau 3 ngày kể từ ngày hết hạn => tên miền sẽ bị tạm ngưng, nhưng chủ thể vẫn có quyền nộp phí gia hạn trong vòng 17 ngày tiếp th… Read More