Hacker News new | past | comments | ask | show | jobs | submit login
Monner - Monitor CPU, memory and network whilst running a program (github.com/colinhowe)
56 points by colinhowe on Aug 12, 2012 | hide | past | favorite | 21 comments



Useful idea. I sometimes use time [1] to print stats at the end of the program's run, like so.

    /usr/bin/time -f 'user=%U system=%S maxrss=%M ins=%I outs=%O" PROGRAM
Seeing stats while the program is running is nice though! Also, cumulative monitoring of an entire foreground process group would be super handy (a long build, for instance).

Drop the --target-output option, you don't need it. Same thing can be achieved with:

   monner.py sh -c 'exec 1>/dev/null 2>&1 $0 "$@"' PROGRAM
I also agree with the other commenter that monner should be the parent process.

[1] Note, time(1) is not the same as the shell builtin of the same name.


Switched around the process architecture. Less code now :)

Will look at dropping the target-output option.


Good point! Changing it now :)


I personally prefer strace's options:

    -f -- follow forks, -ff -- with output into separate files
    -o file -- send trace output to FILE instead of stderr


what does "memory" mean here? it would be nice to have more details (eg virtual v physical). also disk io (with paging separate) would be good. and maybe files opened (like /prod/PID/fd/*)

it would be really nice to have something that shows all this for a single process (and perhaps also for other processes that are "top" in some category). at the moment, when i am trying to balance code to run as well as possible within given hardware constraints, i have to juggle various monitor programs - this is a good first step to using just one...


How does this compare to Instruments?

http://goo.gl/BFWEv

Its advantages are not obvious to me..


It's multiplatform for one.. not everyone uses OS X especially in production


Why not just fork the subprocess rather than forking the monitoring process?


The monitor is stopped as soon as the target process finishes - which means that the very last reading emitted will only contain information from during the run of the target.

If it were done the other way around then we'd have to poll for the termination of the forked target process. Either the poll duration would have to be really small or the monitor would contain readings for some time after the end of the target.

This isn't so bad when running with an interval of 1 second... but for an interval of 1 minute (or longer) it can start to give odd readings.

To be honest, I'm thinking of removing the very final reading anyway. Or, at least documenting that the final reading may be slightly misleading.


Ah. I was mucking around in the subprocess module at one point, and IIRC it already forks the subprocess that it launches, even if you're just doing something like subprocess.call().


htop will solve all your problem. Why even bother Monner?


htop is nice but it's not so usable for generating output that you can graph up and use for comparing things.


What is the minimum python version required to run this?


Nice!

Would be ace if you could add i/o to it (eg maybe through iotop?).


Added!


Even more awesome would be to add metrics for inbound and outbound network packets per second! ;)


I've made it easier to start adding more metrics... could you pop this one in a github issue? I'll be able to actually remember to do it :)


I believe prstat (the Python library I'm using) has this. I'll probably add it in the next few hours :)


Does this work on child threads?


What is all this methods-starting-with-an-underscore crap? That's a pretty shitty way to namespace methods. /ruby guy


"Use one leading underscore only for non-public methods and instance variables." [1]

[1] http://www.python.org/dev/peps/pep-0008/#method-names-and-in...




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: