node-red-contrib-timeseries
Version:
A suite of Node-RED nodes providing an easy-to-use interface for working with a TimeSeries database.
45 lines (38 loc) • 1.65 kB
HTML
<!--
Copyright 2015 IBM Corp.
Licensed 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.
-->
<script type="text/javascript">
RED.nodes.registerType('iotf-transform', {
category: 'GatewayKit',
color: '#c97a7a',
defaults: {
name: {value:""}
},
inputs: 1,
outputs: 1,
icon: "timeseries.png",
align: "right",
label: function() {
return this.name||"IoTF Transform";
}
});
</script>
<script type="text/x-red" data-template-name="iotf-transform">
<div>
<label for="node-input-name">Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="iotf-transform">
<p>This node takes data from the timeseries out node and transforms it to be inserted into the Internet of Things Foundation.</p>
<p>This node is designed to be linked between the Timeseries In node and the ibmiotapp out node (You will also require a JSON node in between this and the ibmiotapp out node. This will allow you to pull aggregated data out of Informix timeseries and push to the IBM IoT Foundation using the ibmiotapp out node.</p>
</script>