get_status {maestro} | R Documentation |
Get the statuses of the pipelines in a MaestroSchedule object
Description
A status data.frame contains the names and locations of the pipelines as well as information around whether they were invoked, the status (error, warning, etc.), and the run time.
Usage
get_status(schedule)
Arguments
schedule |
object of type MaestroSchedule created using |
Value
data.frame
Examples
if (interactive()) {
pipeline_dir <- tempdir()
create_pipeline("my_new_pipeline", pipeline_dir, open = FALSE)
schedule <- build_schedule(pipeline_dir = pipeline_dir)
schedule <- run_schedule(
schedule,
orch_frequency = "1 day",
quiet = TRUE
)
get_status(schedule)
# Alternatively, use the underlying R6 method
schedule$get_status()
}
[Package maestro version 0.5.0 Index]