{% extends 'base.html' %} {% load humanize %} {% load ui_extras %} {% block title %} Monitoring {% endblock %} {% block content %}

Harvester Status

{% if harvests %} {% for harvest in harvests %} {% has_collection_set_based_permission harvest as has_perm %} {% join_stats harvest.stats harvest.status as joined_stats %} {% endfor %}
Harvester Harvest Requested Updated/Completed Status Stats
{{ harvest.service }} on {{ harvest.host }} ({{ harvest.instance }}){% if has_perm %}{% endif %}{{ harvest.collection.collection_set.name }} > {{ harvest.collection.name }} > {{ harvest.get_harvest_type_display }}{% if has_perm %}{% endif %} {{ harvest.date_requested }} {% if harvest.status == "completed success" or harvest.status == "completed failure" %} {{ harvest.date_ended}} {% else %} {{ harvest.date_updated|naturaltime }} {% endif %} {{ harvest.get_status_display }}{{ joined_stats }}

These are for harvesters that reported status in last 3 days. Some of the harvesters listed may no longer be running.

{% else %}

No status for harvesters yet.

{% endif %}

Exporter Status

{% if exports %} {% for export in exports %} {% has_collection_set_based_permission export as has_perm %} {% endfor %}
Exporter Export Requested Updated/Completed Status
{{ export.service }} on {{ export.host }} ({{ export.instance }}){% if has_perm %}{% endif %}{{ export.collection.collection_set.name }} > {{ export.collection.name }}{% if has_perm %}{% endif %} {{ export.date_requested }} {% if export.status == "completed success" or export.status == "completed failure" %} {{ export.date_ended}} {% else %} {{ export.date_updated|naturaltime }} {% endif %} {{ export.get_status_display }}

These are for exporters that reported status in last 3 days. Some of the exporters listed may no longer be running.

{% else %}

No status for exporters yet.

{% endif %}

Harvester Queues

{% for queue, message_count in harvester_queues.items %} {% endfor %}
Queue Queued Requests
{{ queue }} {{ message_count }}

Exporter Queues

{% for queue, message_count in exporter_queues.items %} {% endfor %}
Queue Queued Requests
{{ queue }} {{ message_count }}

UI Queues

{% for queue, message_count in ui_queues.items %} {% endfor %}
Queue Queued Requests
{{ queue }} {{ message_count }}
{% endblock %}