Skip to content

Commit

Permalink
mxqdump: Dump {wait,run,idle}_sec in group view
Browse files Browse the repository at this point in the history
  • Loading branch information
mariux committed Aug 18, 2015
1 parent d79ffbe commit 82acc8d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mxqdump.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ static int print_group(struct mxq_group *g)
" max_utime=%lu"
" max_real=%lu"
" max_memory=%lukiB"
" wait_sec=%lu"
" run_sec=%lu"
" idle_sec=%lu"
" job_command=%s"
" group_name=%s"
"\n",
Expand All @@ -150,6 +153,9 @@ static int print_group(struct mxq_group *g)
g->stats_max_utime.tv_sec,
g->stats_max_real.tv_sec,
g->stats_max_maxrss,
g->stats_wait_sec,
g->stats_run_sec,
g->stats_idle_sec,
g->job_command,
g->group_name);
}
Expand Down

0 comments on commit 82acc8d

Please sign in to comment.