{% extends "layouts/content.html" %} {% load utils %} {% load django_tables2 %} {% block content %}
Description
{{job.description|default:"not set" }}
Status
{{ job.get_state_display }}
Health
{{ job.get_health_display }}
Priority
{{ job.get_priority_display }}
Submitter
{{ job.submitter }}
Visibility
{{ job.get_visibility_display }}
{% if job.visibility == 2 %}
Visibility groups
{% for group in job.viewing_groups.all %} {{ group }}  {% endfor %}
{% endif %}
{% include 'lava_scheduler_app/_device_refresh.html' %}
{% include 'lava_scheduler_app/_job_timing.html' %}
{% if show_failure %} {% endif %}
{% if job.is_multinode %}
{% for subjob in job.sub_jobs_list %}
{{ subjob.sub_id }} {% if '0' in subjob.sub_id and '0' not in job.sub_id %} (?) {% endif %} ({{ subjob.id }})
{% if subjob.actual_device.hostname %} on: {{ subjob.actual_device.hostname }} as: {{ subjob.device_role }} {% else %} No device assigned as {{ subjob.device_role }}. {% endif %}
{% endfor %}
{% endif %} {% if job.failure_comment %} {% endif %}
{% spaceless %} {% get_pipeline_sections pipeline_data as sections %}

Sections

Logging levels


{% endspaceless %}

Line

Action Timing

Action Summary


Each action is displayed relative to the timeline of the job, according to the logging level of the message from that action. Dispatcher messages are in blue, result messages are in green. Target messages are indented and shown in monospace. There is often a lag between the dispatcher message describing an operation and the message from the target processing that operation.

Line numbers are not necessarily sequential to avoid adding extra blank lines to the output.

{% include 'lava_scheduler_app/_structured_logdata.html' %}
{% comment %}log messages{% endcomment %}
{% endblock %} {% comment %} content block {% endcomment %}