Created
May 3, 2015 18:32
-
-
Save apremalal/dedbe4f34544137039dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<eventBuilder> | |
<from eventAdaptorName="httpInputAdaptor" eventAdaptorType="http"> | |
<property name="topic">locationInStream</property> | |
</from> | |
<mapping customMapping="enable" type="json"> | |
<property> | |
<from jsonPath="$.properties.timestamp" /> | |
<to default="0" name="correlation_timeStamp" type="string" /> | |
</property> | |
<property> | |
<from jsonPath="$.properties.deviceid" /> | |
<to default="0" name="deviceId" type="string" /> | |
</property> | |
<property> | |
<from jsonPath="$.geometry.coordinates[0]" /> | |
<to default="0.0" name="lattitude" type="double" /> | |
</property> | |
<property> | |
<from jsonPath="$.geometry.coordinates[1]" /> | |
<to default="0.0" name="longitude" type="double" /> | |
</property> | |
</mapping> | |
<to streamName="locationDataInputStream" version="1.0.0" /> | |
</eventBuilder> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment