Upload Measurement Point


The upload measurement point node uploads measurement point data to EnOS. The uploaded measurement point data is stored according to the storage policy.

Node Type

Action.

Input and Output Ability

This node has multiple entry points and 1 exit point.


The input must be a JSON object or JSON array and is the measurement point data of an asset. The measurement point data must conform to the format of any EnOS-defined standard connectivity protocol. For more information on the protocols, see Connection Protocols.


This node does not output any message but stores the measurement point data as configured.

Node Properties

../../_images/upload_measurement_point.png


Name

Required.

The name of this node.


Channel

Required.

The channel for uploading the measurement point, either Real-time or Offline.


Description

Optional.

The description for the node.

Samples

Input Sample

The input message of this node is JSON object containing the mesurement point data of an asset that conforms to the standard connectivity protocols EnOS defines. AssetId alone or productKey + deviceKey together can identify a device.

{
    "assetId":"assetId",
    "timestamp":24214324324,
    "measurepoints":{
        "temperature":22.4,
        "humidity":78
    }
}

Output Sample

This node does not output any message but stores the measurement point data as configured.