job_log: Obtain Job log

View source: R/job_log.R

job_logR Documentation

Obtain Job log

Description

Obtain Job log

Usage

job_log(job_id, print = TRUE, n_line = 10)

Arguments

job_id

The job id. It can be a single job or a vector of job ids.

print

Whether to print the log message to the terminal.

n_line

Number of last lines for each job to show when multiple jobs are queried.

Value

The log messages as a vector.

Examples

## Not run: 
# a single job
job_id = 1234567  # job ids can be get from `bjobs`
job_log(job_id)
# multiple jobs
job_id = c(10000000, 10000001, 10000002) 
job_log(job_id)  # by  default last 10 lines for each job are printed
job_log(job_id, n_line = 20) # print last 20 lines for each job
# logs for all running jobs
job_log()

## End(Not run)

jokergoo/bsub documentation built on June 30, 2024, 5:16 p.m.