OverviewArchitectureRecipeSourceProcessorSinkContext Graph for AI
OverviewArchitectureRecipeSourceProcessorSinkContext Graph for AI

Enrich

The enrich processor merges configured key-value pairs into each entity's properties map. Use it to add metadata that the source system does not have, such as a team name or environment.

Usage

processors:
  - name: enrich
    config:
      attributes:
        team: data-platform
        environment: production

Configuration

KeyTypeDescriptionRequired
attributesmapKey-value pairs merged into entity.properties. Only string values are applied.yes

Behavior

Each attribute becomes a top-level key in entity.properties. Existing keys with the same name are overwritten. Edges are not changed.

OverviewLabels
On this page
UsageConfigurationBehavior