Thein
02/21/2020, 6:08 PMabhi
02/21/2020, 6:20 PMexecute_pipeline
returns a pipeline execution result object. This object contains event metadata about your pipeline run. (https://github.com/dagster-io/dagster/blob/7292dd6be3269f0471833e6986f3084b134e101e/python_modules/dagster/dagster/core/execution/results.py#L12).
Upon inspection of those step events it should become fairly easy to grab whatever metadata you want and write it to a table or pipe it out to a file somewhere but if you want more, you can check out the DagsterEvent object to learn more (https://github.com/dagster-io/dagster/blob/29dda222e31bd61b861b8bc3b4e272e111348420/python_modules/dagster/dagster/core/events/__init__.py#L146)Thein
02/22/2020, 2:05 AMabhi
02/22/2020, 5:55 AM