{% extends "base.html" %} {% load util_tags %} {% block title %}Manage pipelines{% endblock %} {% block heading %}Enable/disable analysis pipelines{% endblock %} {% block pageid %}pipelines{% endblock %} {% load static %} {% block headcontents %} {{ block.super }} {% endblock %} {% block content %}

This page provides a brief summary of a pipeline's recent activity and provides the ability for EM advocates to disable (or enable) a pipeline's ability to submit events. When a pipeline is disabled, non-Test, non-MDC events cannot be submitted for it. This functionality is intended to mitigate the effects of a pipeline that is misbehaving and submitting erroneous event data.

All users: if you suspect any problems with a pipeline, you should contact one of the EM advocates who is currently on duty. The EM advocate schedule for O3 is here.

EM advocates: after you disable or enable a pipeline, you should contact the low-latency group to describe the action you have taken and the reasons for it.

{% if user_can_manage %}

WARNING: this page is live and any actions you take here will have consequences. Please be careful!

{% endif %}
{% for pipeline in pipeline_list %} {% with n_events_dict|get_item:pipeline.name as n_events_list %} {% endwith %} {% endfor %}
Pipeline status
Recent submissions
Pipeline Current status Time of last submission (UTC) Last minute Last 10 minutes Last hour Last day Action
{{ pipeline.name }} {% if pipeline.enabled %} Enabled {% else %} Disabled {% endif %} {{ submission_dict|get_item:pipeline.name }}{{ n_events_list.0 }} {{ n_events_list.1 }} {{ n_events_list.2 }} {{ n_events_list.3 }} {% if pipeline.enabled %} {% if user_can_manage %} Disable {% else %} {% endif %} {% else %} {% if user_can_manage %} Enable {% else %} {% endif %} {% endif %}
{% if log_messages %}
{% for log in log_messages %} {% endfor %}
Recent activity
# Comment
{{ forloop.revcounter }} {{ log }}
{% endif %} {% endblock %}