{% extends "layout.html" %} {% block body %} {{ super() }}

Monitor

{% if scenario %}

{{ scenario_name }}.

Start time: {{ scenario[1] }}

{% else %}

There is no scenario to monitor.

{% endif %}
{% if scenario %}

Scenario information

Title: {{ scenario[3] }}
Description: {{ scenario[4] }}
{% if scenario[5] == "running" %}
Status: Running
{% elif scenario[5] == "completed" %}
Status: Completed
{% else %}
Status: Finished
{% endif %}
{% if scenario[5] == "running" or scenario[5] == "completed" %} Stop scenario {% endif %} Real-time metrics

Nodes in the database

{% for uid, idx, ip, port, role, neighbors, latitude, longitude, timestamp, federation, round, scenario, hash, status in nodes %} {% if status %} {% else %} {% endif %} {% endfor %}
UID IDX IP Role Round Status Logs
{{ uid }} {{ idx }} {{ ip }} {{ role }} {{ round }}OnlineOffline

Map

This functionality enables you to visualize the nodes in a real-time map.

Topology

This functionality enables you to visualize the topology of the scenario. Click here to download the topology.

{% if not user_logged_in %} {% endif %} {% endif %} {% endblock %}