{% extends "base.html" %} {% block title %}Central — Enrichment{% endblock %} {% block content %}

Enrichment

Central-side event enrichment. Results are attached to each event under data._enriched.<enricher>. Changes hot-reload into the supervisor; switching backend invalidates the enrichment cache.

Configuration {% for field in fields %} {% if field.widget == "text" %} {% if field.description %}{{ field.description }}{% endif %} {% if errors and errors[field.name] %} {{ errors[field.name] }} {% endif %} {% elif field.widget == "number" %} {% if field.description %}{{ field.description }}{% endif %} {% if errors and errors[field.name] %} {{ errors[field.name] }} {% endif %} {% elif field.widget == "json" %} JSON object{% if field.description %} — {{ field.description }}{% endif %} {% if errors and errors[field.name] %} {{ errors[field.name] }} {% endif %} {% endif %} {% endfor %}
{% endblock %}