summary.condor_log {condor} | R Documentation |
Summary Condor Log
Description
Produce a summary of a Condor log file.
Usage
## S3 method for class 'condor_log'
summary(object, ...)
Arguments
object |
an object of class |
... |
passed to |
Value
Data frame with the following columns:
job.id |
job id. |
status |
text indicating whether job status is submitted, executing, aborted, or finished. |
submit.time |
date and time when job was submitted. |
runtime |
total duration of a job. |
disk |
disk space used by job (MB). |
memory |
memory used by job (MB). |
Author(s)
Arni Magnusson.
See Also
condor_log
shows Condor log file.
condor-package
gives an overview of the package.
Examples
## Not run:
# Examine log files on submitter machine
session <- ssh_connect("servername")
condor_dir()
condor_log()
summary(condor_log())
#' # Alternatively, examine log files on local drive
condor_dir(local.dir="c:/myruns")
condor_log(local.dir="c:/myruns/01_this_model")
summary(condor_log(local.dir="c:/myruns/01_this_model"))
## End(Not run)
[Package condor version 2.1.0 Index]