Crawls through log files and reports jobs with lines matching the pattern
.
See showLog
for an example.
grepLogs(
ids = NULL,
pattern,
ignore.case = FALSE,
fixed = FALSE,
reg = getDefaultRegistry()
)
[data.table
] with columns “job.id” and “message”.
[data.frame
or integer
]
A data.frame
(or data.table
)
with a column named “job.id”.
Alternatively, you may also pass a vector of integerish job ids.
If not set, defaults to the return value of findStarted
.
Invalid ids are ignored.
[character(1L)
]
Regular expression or string (see fixed
).
[logical(1L)
]
If TRUE
the match will be performed case insensitively.
[logical(1L)
]
If FALSE
(default), pattern
is a regular expression and a fixed string otherwise.
[Registry
]
Registry. If not explicitly passed, uses the default registry (see setDefaultRegistry
).
Other debug:
getErrorMessages()
,
getStatus()
,
killJobs()
,
resetJobs()
,
showLog()
,
testJob()