Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Events have structure. They have a type and attributes that have values. Events also include a domain that can be used to group events together--forming a two-tier hierarchy. We want to write patterns that can match the components of this structure using primitive event expressions to recognize the occurrence of individual events. The simplest event expressions match an event domain and name exactly:

Code Block
languagejs
themeConfluence
select when emitter new_sensor_reading

We can also match based on patterns in attributes and even capture values for later use. The following sections talk about matching primitive, or simple events:

...