当前位置: 首页>>代码示例>>Python>>正文


Python Dashboard.get_running_jobs方法代码示例

本文整理汇总了Python中Pegasus.service.dashboard.dashboard.Dashboard.get_running_jobs方法的典型用法代码示例。如果您正苦于以下问题:Python Dashboard.get_running_jobs方法的具体用法?Python Dashboard.get_running_jobs怎么用?Python Dashboard.get_running_jobs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Pegasus.service.dashboard.dashboard.Dashboard的用法示例。


在下文中一共展示了Dashboard.get_running_jobs方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: running_jobs

# 需要导入模块: from Pegasus.service.dashboard.dashboard import Dashboard [as 别名]
# 或者: from Pegasus.service.dashboard.dashboard.Dashboard import get_running_jobs [as 别名]
def running_jobs(username, root_wf_id, wf_id):
    """
    Get a list of all running 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, running_jobs_list = dashboard.get_running_jobs(wf_id, **args)

    for job in running_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>"
        )

    return render_template(
        "workflow/jobs_running.xhr.json",
        count=total_count,
        filtered=filtered_count,
        jobs=running_jobs_list,
        table_args=args,
    )
开发者ID:duncan-brown,项目名称:pegasus,代码行数:29,代码来源:views.py

示例2: running_jobs

# 需要导入模块: from Pegasus.service.dashboard.dashboard import Dashboard [as 别名]
# 或者: from Pegasus.service.dashboard.dashboard.Dashboard import get_running_jobs [as 别名]
def running_jobs(root_wf_id, wf_id):
    '''
    Get a list of all running 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, running_jobs_list = dashboard.get_running_jobs(wf_id, **args)

    for job in running_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.exec_job_id + '</a>'

    return render_template('workflow/jobs_running.xhr.json', count=total_count, filtered=filtered_count, jobs=running_jobs_list, table_args=args)
开发者ID:charissathomas,项目名称:pegasus,代码行数:15,代码来源:views.py


注:本文中的Pegasus.service.dashboard.dashboard.Dashboard.get_running_jobs方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。