-
Is there a way to get job metadata like start time, duration or endtime? The question was originally asked in Dagster Slack. |
Beta Was this translation helpful? Give feedback.
Answered by
yuhan
Jun 15, 2022
Replies: 1 comment
-
In a sensor or other places where the context arg is available, you can get run stats (timestamp, etc) from Dagster Instance by passing in a run_id:
If you'd also want to get these info outside a sensor, you can do:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
yuhan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In a sensor or other places where the context arg is available, you can get run stats (timestamp, etc) from Dagster Instance by passing in a run_id:
If you'd also want to get these info outside a sensor, you can do: