Common attributes

Core processor attributes that provide out-of-the-box features

Overview

Every Joule OOTB processor will have these common attributes.

Example & DSL attributes

The mobile_device_info_enricher enriches incoming events by adding deviceManufacturer and model information using the tac key from the mobiledevices store.

It triggers after a 50-second delay and clones the event with the enriched data.

enricher:
  name: mobile_device_info_enricher
  clone event: true
  latency trigger: 50000
  fields:
    deviceManufacturer:
      with values: [deviceManufacturer, year_released]
      by key: tac
      using: deviceStore

    model:
      with values: [modelNumber]
      by key: tac
      using: deviceStore

  stores:
    deviceStore:
      store name: mobiledevices

Attribute schema

Last updated