Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
distributed / distributed / http / templates / status.html
Size: Mime:
{% extends "base.html" %}

{% block extra_resources %}
<link rel="stylesheet" href="statics/css/status.css">
{% endblock %}

{% block content %}
{% from macros import embed %}
<div id="status-fluid">

  <div id="status-cluster-memory">
    {{ embed(roots.cluster_memory) }}
  </div>

  <div id="status-workers-memory">
    {{ embed(roots.workers_memory) }}
  </div>

  <div id="status-processing">
    {{ embed(roots.processing_tabs) }}
  </div>

  <div id="status-tasks">
    {{ embed(roots.task_stream) }}
  </div>

  <div id="status-progress">
    {{ embed(roots.task_progress) }}
  </div>

</div>
{{ plot_script }}

{% endblock %}