This isn't specific to freebsd I suppose.. but does anyone know any good programs to measure how long a process took, how much memory it requested, and how much network traffic it send/received?
See "man getrusage" and "man gprof" for the first two questions.
Measuring how much network traffic something sends is more complicated: counters kept at the application-level see different numbers than what actually goes out on the wire, due to collisions, lost packets, etc. Using a network sniffer or IPFW rule to monitor the traffic is likely to give a more meaningful result, depending on what you want to do.
-- -Chuck
_______________________________________________ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
