It would be nice to track and report various metrics for child processes created with assert_cmd. The kind of process metrics that you might track with /usr/bin/time or perf, such as instruction count, page faults, max memory, io counts, context switches, etc...
Some resources I found:
Does anyone have a strong disposition for or against tracking performance metrics of processes started with assert_cmd?
It would be nice to track and report various metrics for child processes created with assert_cmd. The kind of process metrics that you might track with
/usr/bin/timeorperf, such as instruction count, page faults, max memory, io counts, context switches, etc...Some resources I found:
/usr/bin/timeuses the getrusage libc api. (The man page also mentionsvtimes().)Does anyone have a strong disposition for or against tracking performance metrics of processes started with assert_cmd?