View source: R/summary.condor_log.R
summary.condor_log | R Documentation |
Produce a summary of a Condor log file.
## S3 method for class 'condor_log'
summary(object, ...)
object |
an object of class |
... |
passed to |
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). |
Arni Magnusson.
condor_log
shows Condor log file.
condor-package
gives an overview of the package.
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.