1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
*condor_userlog*
=================
Display and summarize job statistics from job log files.
:index:`condor_userlog<single: condor_userlog; HTCondor commands>`\ :index:`condor_userlog command`
Synopsis
--------
**condor_userlog** [**-help** ] [**-total | -raw** ] [**-debug** ]
[**-evict** ] [**-j** *cluster | cluster.proc*] [**-all** ]
[**-hostname** ] *logfile ...*
Description
-----------
*condor_userlog* parses the information in job log files and displays
summaries for each workstation allocation and for each job. See the
*condor_submit* manual page for instructions for specifying that
HTCondor write a log file for your jobs.
If **-total** is not specified, *condor_userlog* will first display a
record for each workstation allocation, which includes the following
information:
Job
The cluster/process id of the HTCondor job.
Host
The host where the job ran. By default, the host's IP address is
displayed. If **-hostname** is specified, the host name will be
displayed instead.
Start Time
The time (month/day hour:minute) when the job began running on the
host.
Evict Time
The time (month/day hour:minute) when the job was evicted from the
host.
Wall Time
The time (days+hours:minutes) for which this workstation was
allocated to the job.
Good Time
The allocated time (days+hours:min) which contributed to the
completion of this job. If the job exited during the allocation,
then this value will equal "Wall Time." Otherwise, it will 0+00:00;
self-checkpoint are presently ignored.
CPU Usage
The CPU time (days+hours:min) which contributed to the completion of
this job.
*condor_userlog* will then display summary statistics per host:
Host/Job
The IP address or host name for the host.
Wall Time
The workstation time (days+hours:minutes) allocated by this host to
the jobs specified in the query. By default, all jobs in the log are
included in the query.
Good Time
The time (days+hours:minutes) allocated on this host which
contributed to the completion of the jobs specified in the query.
CPU Usage
The CPU time (days+hours:minutes) obtained from this host which
contributed to the completion of the jobs specified in the query.
Avg Alloc
The average length of an allocation on this host
(days+hours:minutes).
Avg Lost
The average amount of work lost (days+hours:minutes) when a job was
evicted from this host.
Goodput
This percentage is computed as Good Time divided by Wall Time.
Util.
This percentage is computed as CPU Usage divided by Good Time.
*condor_userlog* will then display summary statistics per job:
Host/Job
The cluster/process id of the HTCondor job.
Wall Time
The total workstation time (days+hours:minutes) allocated to this
job.
Good Time
The total time (days+hours:minutes) allocated to this job which
contributed to the job's completion.
CPU Usage
The total CPU time (days+hours:minutes) which contributed to this
job's completion.
Avg Alloc
The average length of a workstation allocation obtained by this job
in minutes (days+hours:minutes).
Avg Lost
The average amount of work lost (days+hours:minutes) when this job
was evicted from a host; self-checkpoints are presently ignored.
Goodput
This percentage is computed as Good Time divided by Wall Time.
Util.
This percentage is computed as CPU Usage divided by Good Time.
Finally, *condor_userlog* will display a summary for all hosts and
jobs.
Options
-------
**-help**
Get a brief description of the supported options
**-total**
Only display job totals
**-raw**
Display raw data only
**-debug**
Debug mode
**-j**
Select a specific cluster or cluster.proc
**-evict**
Select only allocations which ended due to eviction
**-all**
Select all clusters and all allocations
**-hostname**
Display host name instead of IP address
General Remarks
---------------
Since the HTCondor job log file format does not contain a year field in
the timestamp, all entries are assumed to occur in the current year.
Allocations which begin in one year and end in the next will be silently
ignored.
Exit Status
-----------
*condor_userlog* will exit with a status value of 0 (zero) upon
success, and it will exit with the value 1 (one) upon failure.
|