コード例 #1
0
ファイル: base.py プロジェクト: uttasarga9067/dagster
 def get_stats_for_run(self, run_id: str) -> PipelineRunStatsSnapshot:
     """Get a summary of events that have ocurred in a run."""
     return build_run_stats_from_events(run_id, self.get_logs_for_run(run_id))
コード例 #2
0
ファイル: base.py プロジェクト: xyzlat/dagster
 def get_stats_for_run(self, run_id):
     '''Get a summary of events that have ocurred in a run.'''
     return build_run_stats_from_events(run_id,
                                        self.get_logs_for_run(run_id))