condor_log {condor} | R Documentation |
Condor Log
Description
Show Condor log file from a run directory, either on submitter machine or on a local drive.
Usage
condor_log(run.dir = ".", top.dir = "condor", local.dir = NULL,
session = NULL)
Arguments
run.dir |
name of a Condor run directory inside |
top.dir |
top directory on submitter machine that contains Condor run directories. |
local.dir |
local directory to examine instead of
top.dir |
session |
optional object of class |
Details
The default value of session = NULL
looks for a session
object
in the user workspace. This allows the user to run Condor functions without
explicitly specifying the session
.
Value
Log file contents as an object of class condor_log
.
The condor_log
class is simply a "character"
vector with a
print.condor_log
method.
Author(s)
Arni Magnusson.
See Also
summary.condor_log
shows Condor log file summary.
condor_dir
lists Condor directories.
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 file 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)