Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Remove 'with' from raise

...

Event attributes can be sent to an event in different ways. One way is by using GET or POST requests with the HTTP library. The other way is to raise include attributes when raising an event using the with keyword. The following KRL would raise an event with event attributes:

...

raise explicit event "testEventAttributes" for a1x100
   with attributes foo = {"foo":"bar"};

 

This attribute could be used in the following rule:

...