Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Linux C: interactive output

I'm developing some kind of mysql monitoring tool so I need interactive output like top command.

Is there any lib that can be used for this?

like image 510
Gleb Voronich Avatar asked Oct 15 '22 00:10

Gleb Voronich


1 Answers

You may get some good milage out of ncurses http://www.gnu.org/software/ncurses/

Here is a link to the IO-Top source code. It is software that behaves like top, but displays information related to IO, rather than CPU.

  • http://repo.or.cz/w/iotop.git
like image 181
Noah Watkins Avatar answered Oct 20 '22 17:10

Noah Watkins