Removed redundant analytics artifacts

revert-dabc3590
Rasika Perera 8 years ago
parent e6de7a4d90
commit 54e5994b0b

@ -1,57 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
~
~ WSO2 Inc. licenses this file to you under the Apache License,
~ Version 2.0 (the "License"); you may not use this file except
~ in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<eventReceiver name="Geo-Receiver-HTTP-LocationStream"
statistics="disable" trace="disable" xmlns="http://wso2.org/carbon/eventreceiver">
<from eventAdapterType="http">
<property name="basicAuthEnabled">true</property>
<property name="transports">all</property>
</from>
<mapping customMapping="enable" type="json">
<property>
<from jsonPath="$.id"/>
<to default="0.0" name="id" type="string"/>
</property>
<property>
<from jsonPath="$.timeStamp"/>
<to name="timeStamp" type="long"/>
</property>
<property>
<from jsonPath="$.lattitude"/>
<to name="latitude" type="double"/>
</property>
<property>
<from jsonPath="$.longitude"/>
<to name="longitude" type="double"/>
</property>
<property>
<from jsonPath="$.type"/>
<to default="VEHICLE" name="type" type="string"/>
</property>
<property>
<from jsonPath="$.speed"/>
<to name="speed" type="float"/>
</property>
<property>
<from jsonPath="$.angle"/>
<to name="heading" type="float"/>
</property>
</mapping>
<to streamName="org.wso2.geo.LocationStream" version="1.0.0"/>
</eventReceiver>

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?><!--
~ Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
~
~ WSO2 Inc. licenses this file to you under the Apache License,
~ Version 2.0 (the "License"); you may not use this file except
~ in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<artifact name="Geo-Dashboard-Http-Receiver" version="1.0.0" type="event/receiver" serverRole="GeoDashboard">
<file>Geo-Receiver-HTTP-LocationStream.xml</file>
</artifact>

@ -1,27 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
~
~ WSO2 Inc. licenses this file to you under the Apache License,
~ Version 2.0 (the "License"); you may not use this file except
~ in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<eventReceiver name="Geo-Receiver-WSO2Event-LocationStream"
trace="disable" xmlns="http://wso2.org/carbon/eventreceiver">
<from eventAdapterType="iot-event">
<property name="events.duplicated.in.cluster">false</property>
</from>
<mapping customMapping="disable" type="wso2event"/>
<to streamName="org.wso2.geo.LocationStream" version="1.0.0"/>
</eventReceiver>

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?><!--
~ Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
~
~ WSO2 Inc. licenses this file to you under the Apache License,
~ Version 2.0 (the "License"); you may not use this file except
~ in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<artifact name="Geo-Dashboard-WSO2Event-Receiver" version="1.0.0" type="event/receiver" serverRole="GeoDashboard">
<file>Geo-Receiver-WSO2Event-LocationStream.xml</file>
</artifact>

@ -1,19 +0,0 @@
/* Enter a unique ExecutionPlan */
@Plan:name('Geo-ExecutionPlan-InputStandardizer')
/* Enter a unique description for ExecutionPlan */
-- @Plan:description('ExecutionPlan')
/* define streams/tables and write queries here ... */
@Plan:trace('false')
@Import('org.wso2.geo.LocationStream:1.0.0')
define stream dataIn (id string, timeStamp long, latitude double, longitude double, type string, speed float, heading float );
@Export('org.wso2.geo.StandardSpatialEvents:1.0.0')
define stream dataOut ( id string, latitude double, longitude double, timeStamp long, type string, speed float, heading float, eventId string );
from dataIn
select id, latitude, longitude, timeStamp, type ,speed, heading, UUID() as eventId
insert into dataOut

@ -1,36 +0,0 @@
{
"name": "org.wso2.geo.LocationStream",
"version": "1.0.0",
"nickName": "",
"description": "",
"payloadData": [
{
"name": "id",
"type": "STRING"
},
{
"name": "timeStamp",
"type": "LONG"
},
{
"name": "latitude",
"type": "DOUBLE"
},
{
"name": "longitude",
"type": "DOUBLE"
},
{
"name": "type",
"type": "STRING"
},
{
"name": "speed",
"type": "FLOAT"
},
{
"name": "heading",
"type": "FLOAT"
}
]
}
Loading…
Cancel
Save