Returns a summary of the most recent jobs, optionally filtered by state. Useful for quickly reviewing which jobs have completed, failed, or are still running.
Value
A data.frame with columns:
- job_id
Job ID string, e.g.
"job-XXXX".- name
Job name (typically
"Table exporter").- state
Current job state.
- created
Job creation time (
POSIXct).- runtime
Runtime string (e.g.
"0:04:36"),NAif still running.
Examples
if (FALSE) { # \dontrun{
job_ls()
job_ls(n = 5)
job_ls(state = "failed")
job_ls(state = c("done", "failed"))
} # }
