{% extends "layout.html" %} {% block content %}

{{ node.display_name }} / recent activity / logs

Details

{% if current_app.config.DOORMAN_CAPTURE_NODE_INFO %} {% for column, label in current_app.config.DOORMAN_CAPTURE_NODE_INFO %} {% if column in node.node_info %} {% endif %} {% endfor %} {% endif %}
{{ label | lower }} {{ node.node_info[column] | render(column) }}
last ip address {{ node.last_ip | default('', true) }}
host identifier {{ node.host_identifier }}
enrolled {{ node.enrolled_on }}
last check-in {{ node.last_checkin }}
active

Packs

{% if packs is not defined %} {% set packs = node.packs.all() %} {% endif %} {% if packs %} {% include "tables/packs.html" %} {% else %}

No packs currently associated with this node. Use the tag functionality to associate nodes with packs.

{% endif %}

Queries

{% if queries is not defined %} {% set queries = node.queries.all() %} {% endif %} {% if queries %} {% include "tables/queries.html" %} {% else %}

No queries currently associated with this node. Use the tag functionality to associate nodes with queries.

{% endif %}

File Integrity Monitoring

{% if file_paths is not defined %} {% set file_paths = node.file_paths.all() %} {% endif %} {% if file_paths %}
    {% for file_path in file_paths %}
  • {{ file_path.category }}
    • {% for path in file_path.get_paths() %}
    • {{ path }}
    • {% endfor %}
    {% endfor %}
{% else %}

No files currently being monitored on this node. Use the tag functionality to associate nodes with file paths to monitor.

{% endif %}

Tags

{% endblock %}