{% extends 'base.html' %} {% block title %}Carte flux{% endblock %} {% block content %} < Retour

Carte des flux reseau

{% if flows %}
{{ flows|length }} flux inter-serveurs
{% for f in flows %} {% endfor %}
Dir Source IP source Destination IP dest Port Process State Nb
{{ f.direction }} {{ f.source_hostname }} {{ f.source_ip }} {{ f.dest_hostname or '-' }} {{ f.dest_ip }} {{ f.dest_port }} {{ f.process_name }} {{ f.state }} {{ f.cnt }}
{% else %}
Aucun flux. Importez des rapports JSON d'abord.
{% endif %} {% if app_map %}

Carte applicative

{% for app_name, app in app_map.items() %}
{{ app_name }} {{ app.servers|length }} serveur(s)
{% if app.ports %}
Ports: {% for p in app.ports %}{{ p }}{% if not loop.last %}, {% endif %}{% endfor %}
{% endif %}
{% for s in app.servers %}
{{ s.hostname }} user={{ s.user }} {{ s.cmdline[:50] }}
{% endfor %}
{% endfor %}
{% endif %} {% endblock %}