{% extends "base.html" %} {% block content %} {% if statistics %}

Information for {{days}} days. Total number of tasks: {{statistics.total}}, Average per day: {{statistics.average}}

{% if statistics.detections %} {% for block in statistics.detections.items %} {% if block.family %} {% endif %} {% if forloop.counter|divisibleby:"5" %} {% elif forloop.last %} {% endif %} {% endfor %}
{{block.total}}: {{block.family}}
{% endif %} {% if statistics.asns %}

Top ASN

{% for block in statistics.asns %} {% if block.asn %} {% endif %} {% if forloop.counter|divisibleby:"5" %} {% elif forloop.last %} {% endif %} {% endfor %}
{{block.total}}: {{block.asn}}
{% endif %}

Tasks per day

{% for day, block in statistics.tasks.items %} {% endfor %}
Day Tasks Added Tasks Reported Tasks Failed
{{day}} {{block.added}} {{block.reported}} {{block.failed}}

{% if statistics.custom_statistics %}

Custom Signatures data only for Volatility/static extraction

{% for name, time in statistics.custom_statistics.items %} {% endfor %}
Name Total time in minutes Runs Extracted Average time in minutes(Total/runs)
{{name}} {{time.total}} {{time.runs}} {{time.successful}} {{time.average}}
{% endif %}

Time per module

{% if statistics.processing %}

Processing

{% for name, time in statistics.processing.items %} {% endfor %}
Name Total time in minutes Runs Average time in minutes(Total/runs)
{{name}} {{time.total}} {{time.runs}} {{time.average}}
{% endif %} {% if statistics.signatures %}

Signatures

{% for name, time in statistics.signatures.items %} {% endfor %}
Name Total time in minutes Runs Average time in minutes(Total/runs)
{{name}} {{time.total}} {{time.runs}} {{time.average}}
{% endif %} {% if statistics.reporting %}

Reporting

{% for name, time in statistics.reporting.items %} {% endfor %}
Name Total time in minutes Runs Average time in minutes(Total/runs)
{{name}} {{time.total}} {{time.runs}} {{time.average}}
{% endif %}
{% else %}
No statistics found.
{% endif %} {% if statistics.distributed_tasks %}

Cluster details

{% for day, block in statistics.distributed_tasks.items %}
{{day}} {% for name, tasks in block.items %}
  • Node: {{name}} - Tasks {{tasks}}
  • {% endfor %}
    {% endfor %}
    {% endif %} {% endblock %}