Walks the DAG upward (recursively through all upstream dependencies) and collects the most recent log entry for each flow in the chain, including the flow itself.
Arguments
- conn
A connection object from
pl_connect().- flow
Flow name.
- since
Optional
POSIXctor ISO 8601 string. If provided, only log entries created after this timestamp are considered. Flows with no logs since that time getstatus = NA.
Value
A data.frame sorted by depth then flow, with columns: flow,
type, status, message, created, depth.
Examples
if (FALSE) { # \dontrun{
conn <- pl_connect()
pl_get_status(conn, "ans_monthly_update")
pl_get_status(conn, "ans_monthly_update", since = Sys.time() - 86400)
} # }