This documentation is for WSO2 CEP 3.0.0. View the home page of the latest release.

Unknown macro: {next_previous_link3}
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 15 Next »

Text Event Builder converts the events/streams from an input adaptor that supports Text input streams into an event stream that is compatible with the event processor. The event attributes are extracted using regular expressions and converted to the type specified in the mapping before sent to the event processor.

You can configure through the management console as explained below or by manually adding an XML file as explained in step 5.

  1. Start the CEP, log in to its management console, select Event Builders and click Add Event Builder.
  2. Enter details in the form that appears and click the Add Event Builder button at the end of the form. For example,

    The fields in the above configuration are as follows:

    • Event Builder Name : Property to uniquely identify an event formatter configuration
    • Input Event Adaptor (marked as 1 in the screenshot) : The input event adaptor used to publish events to the CEP. This drop-down list only displays the adaptors that are already created. In this example, we select a Input Email Event Adaptor already created.
    • Input Event Adaptor properties (marked as 2 in the screenshot) : Properties required by the input event adaptor depending on the input event adaptor type selected before. For example, if you select  an event adaptor that supports Text, then the required properties are:
      •  Topic - The topic to which event publishers send events
    • Input Mapping Type (marked as 3 in the screenshot) : Select text as the mapping type. This property changes based on the event adaptor selected. It lists only the mapping types supported by a particular event adaptor.
    • Mapping properties (marked as 4 in the screenshot) : Map the incoming stream to the outgoing stream received by the event processor. Provide the necessary details in the input fields:
      • Enter the regular expression under Regular Expression Definitions
      • Click Add to add the definition. It must now be available under the Regular Expression drop-down in the Add section
      • Enter the Input Attribute Name, Regular Expression and To Stream Data Type under Properties
      • Click Add to add the individual attribute mapping to the event builder

        For the correct properties to show, you must select an event adaptor that supports Text mapping type.

    • To Stream Name/Version : Stream name/version of the outgoing stream
    • When specifying the subject for the input email, the Email Service Name here must be given in the email subject, in the format shown in the hint. For example, if the Email Service Name is RegisterParticipant, the subject of the email sent as the input must be SOAPAction: urn:RegisterParticipant
    • The input email must be in plain text. Do not use any rich text formatting.
  3. After a builder is successfully created, you can change its configuration and redeploy it. To do this, click the Edit link associated with it. You can also click the other links associated with it to delete or enable statistics and tracing.
  4. An XML based editor opens allowing you to edit the event builder configuration from the UI itself, without having to edit the file in the file system. Do your modifications and click Update.
  5. Alternatively, y ou can specify an event builder configuration using an XML file and save it in <PRODUCT_HOME>/repository/deployment/server/eventbuilders directory, which is the event builder deployment directory. Since hot deployment is enabled, you can simply add/remove files to deploy/undeploy from the server.

    Create the XML file with the following Text based event builder configurations. Event builder implementation must start with <eventbuilder> root element and the namespace set to http://wso2.org/carbon/eventbuilder  as in the example below:

    <eventBuilder name="textbuilder" traceEnabled="true" xmlns="http://wso2.org/carbon/eventbuilder">
        <from eventAdaptorName="emailAdaptor" eventAdaptorType="email">
            <property name="email.in.subject">TestEmailService</property>
        </from>
        <mapping type="text">
            <property>
                <from regex="(\w+)\sin\s(\w+)"/>
    		    <to name="person" type="string"/>
    		    <to name="location" type="string"/>
            </property>
            <property>
    		<from regex="USD\s(\d*\.\d{2})"/>
                <to name="amount" type="double"/>
            </property>
        </mapping>
        <to streamName="correlationStream" version="1.4.0"/>
    </eventBuilder>
  • No labels