Event Publisher

Configuring WSO2Event Event Publisher

This will convert the events which coming from Siddhi in to wso2Events according to the mapping configurations.

Hence WSO2Event has three data types (Meta, Correlation and Payload), the CEP back end runtime event attributes can be mapped to any one of them by adding the mapping configuration under their type names.

Configuring through the Management Console UI

1. Log in to the CEP management console and select the Main menu in the left hand side of the screen. Then select the Add menu item under Event Publisher menu.

2. The Create a New Event Publisher window opens, using which you can configure new event publishers. Enter the following details in the form to create a wso2Event mapping based event publisher as shown in the screenshot below.


Create Event Publisher

Here, there are several properties that need to be filled when creating a event publisher. User interface is divided in to 3 main components (From, Mapping and To) except the event publisher name to give more understanding to the user.

WSO2Event Mapping

WSO2Event contains three types of data properties. They are Meta Data, Correlation Data and Payload Data. Each data property needs to have

3. After adding details click the Add Event Publisher button. The Available Event Publisher page will open. To view event publisher configurations, click on the event publisher name. To delete event publisher, click the Delete button.


Create Event Publisher


Editing Event Publisher Configuration through the Management Console

By Clicking the Edit button of the relevant event publisher, you will able to edit the event publisher configuration and redeploy it. When you click the Edit button, it will redirect to a xml based editor window which allow you to edit the event publisher configuration from UI without opening the configuration file in the file system.


Create Event Publisher

Configuring through a xml File

You can specify a event publisher configuration through in a xml file and deploy it in the deployment directory in the server. Event Publisher deployment directory is available at <CARBON_HOME>/repository/deployment/server/eventpublishers . This is an hot deployment directory, then it is easy to deploy and undeploy an event publisher configuration.

1. Create a xml file and enter the following WSO2Event mapping event publisher configurations inside the above mentioned hot deployment directory. Event publisher implementation needs to be start with "eventpublisher" root element.

<eventPublisher name="StatisticsPublisher" xmlns="http://wso2.org/carbon/eventpublisher">
        <from streamName="statisticsStream" version="1.0.0"/>
        <mapping type="wso2event">
            <metaData>
                <property>
                    <from name="ipAddress"/>
                    <to name="ipAdd" type="string"/>
                </property>
            </metaData>
            <payloadData>
                <property>
                    <from name="user"/>
                    <to name="username" type="string"/>
                </property>
            </payloadData>
        </mapping>
        <to eventAdapterType="wso2EventSender" eventAdapterType="wso2event">
            <property name="stream">statisticsOutStream</property>
            <property name="version">1.0.0</property>
            </to>
    </eventPublisher>

For more details on creating different types of event publishers, Please refer the official documentation Here.