{% extends "siem/base.html" %} {% block sub-title %}Parser - {{ lp }} | {% endblock %} {% block content-main %} {% if form.errors %}

There were some errors.

{% endif %}

{{ lp }} (Parser)

Edit · Delete · Index
AttributeSettingDescription
ID{{ ph.id }}The parser's internal ID
Built-in?{{ ph.is_builtin }}Whether the parser is built-in to LogESP.
Name{{ lp.name }}The parser name.
Desc{{ lp.desc }}A description of the parser.
Match Regex{{ lp.match_regex }}The regular expression for finding attributes.
Fields{{ lp.fields }}The fields parsed by the regular expression.
Backup Match Regex{% if lp.backup_match_regex %}{{ lp.backup_match_regex }}{% endif %}A backup regular expression, in case the first one fails.
Backup Fields{% if lp.backup_fields %}{{ lp.backup_fields }}{% endif %}The fields parsed by the backup regular expression.
{% endblock %}