本文整理汇总了Python中Pegasus.service.dashboard.dashboard.Dashboard.get_failed_jobs方法的典型用法代码示例。如果您正苦于以下问题:Python Dashboard.get_failed_jobs方法的具体用法?Python Dashboard.get_failed_jobs怎么用?Python Dashboard.get_failed_jobs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pegasus.service.dashboard.dashboard.Dashboard
的用法示例。
在下文中一共展示了Dashboard.get_failed_jobs方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: failed_jobs
# 需要导入模块: from Pegasus.service.dashboard.dashboard import Dashboard [as 别名]
# 或者: from Pegasus.service.dashboard.dashboard.Dashboard import get_failed_jobs [as 别名]
def failed_jobs(username, root_wf_id, wf_id):
"""
Get a list of all failed jobs of the latest instance for a given workflow.
"""
dashboard = Dashboard(g.master_db_url, root_wf_id, wf_id)
args = __get_datatables_args()
total_count, filtered_count, failed_jobs_list = dashboard.get_failed_jobs(wf_id, **args)
for job in failed_jobs_list:
job.exec_job_id = '<a href="' + url_for('.job', root_wf_id=root_wf_id, wf_id=wf_id, job_id=job.job_id, job_instance_id=job.job_instance_id) + '">' + job.exec_job_id + '</a>'
job.stdout = '<a target="_blank" href="' + url_for('.stdout', root_wf_id=root_wf_id, wf_id=wf_id, job_id=job.job_id, job_instance_id=job.job_instance_id) + '">stdout</a>'
job.stderr = '<a target="_blank" href="' + url_for('.stderr', root_wf_id=root_wf_id, wf_id=wf_id, job_id=job.job_id, job_instance_id=job.job_instance_id) + '">stderr</a>'
return render_template('workflow/jobs_failed.xhr.json', count=total_count, filtered=filtered_count, jobs=failed_jobs_list, table_args=args)