{% extends "_layout.html" %} {% block content %}
{{ _('This module displays various statistics for events. These statistics are calculated from in advance precalculated artefacts and can therefore provide quick overview of event processing.') | safe }}
{{ _('Number of statistical records') }}: | {{ babel_format_decimal(items_count) }} |
---|---|
{{ _('Number of events') }}: | {{ babel_format_decimal(statistics['count']) }} |
{{ _('Result time interval') }}: | {{ babel_format_datetime(statistics['dt_from']) }} - {{ babel_format_datetime(statistics['dt_to']) }} ({{ babel_format_timedelta(statistics['dt_to'] - statistics['dt_from']) }}) |
{{ _('Timeline time interval') }}: | {{ babel_format_datetime(statistics['timeline_cfg'].t_from) }} - {{ babel_format_datetime(statistics['timeline_cfg'].t_to) }} ({{ babel_format_timedelta(statistics['timeline_cfg'].t_to - statistics['timeline_cfg'].t_from) }}) |
{{ get_icon('role-admin') }}{{ _('Timeline steps') }}: | {{ babel_format_decimal(statistics['timeline_cfg'].count) }} x {{ statistics['timeline_cfg'].step.__str__() }} |
{{ _('Comparison of the event counts for overall, internal and external categories:') | safe }}
{{ _('Overall event counts') }}: | {{ babel_format_decimal(statistics['stats_overall']['cnt_alerts']) }} | {%- if statistics['stats_overall']['cnt_alerts'] != 0 %}{{ babel_format_percent(statistics['stats_overall']['cnt_alerts']/statistics['stats_overall']['cnt_alerts']) }} | {%- endif %}
---|---|---|
{{ _('Internal event counts') }}: | {{ babel_format_decimal(statistics['stats_internal']['cnt_alerts']) }} | {%- if statistics['stats_overall']['cnt_alerts'] != 0 %}{{ babel_format_percent(statistics['stats_internal']['cnt_alerts']/statistics['stats_overall']['cnt_alerts']) }} | {%- endif %}
{{ _('External event counts') }}: | {{ babel_format_decimal(statistics['stats_external']['cnt_alerts']) }} | {%- if statistics['stats_overall']['cnt_alerts'] != 0 %}{{ babel_format_percent(statistics['stats_external']['cnt_alerts']/statistics['stats_overall']['cnt_alerts']) }} | {%- endif %}
{{ _('This panel shows overall statistics calculated from all available data.') | safe }}
{{ _('This panel shows statistics calculated only for data regarding internal networks. The internal networks are those that are registered within the Mentat system, because they are important and interesting to the system users.') | safe }}
{{ _('This panel shows statistics calculated only for data regarding external networks. The external networks are those that are not registered within the Mentat system and are therefore not that important or interesting to the system users.') | safe }}