Save Measurement Point


The Save Measurement Point node saves the output from the previous node as device measurement point information. The saved information can be viewed in EnOS Management Console > Device Management > Device Assets > Device Details > Measurement Points.


../../../_images/save_measurement_point_updated.png


Note

This does not send the measurement point to TSDB. If required to, use the Send Measurement Point node.

Node Type

EnOS.

Input and Output Ability

This node has multiple entry points and 2 exit points (success/failure).

Node Properties

../../../_images/save_measurement_point.png


Name

The name for this node.


Include Offline

Toggling on this switch will save the measurement point even if the device is offline. If toggled off, measurement points from offline devices will be ignored.


Description

The description for this node.

Limitations

  • The input msg must be in EnOS standard data format, with the metadata containing the asset ID, device key, product key, and organization ID.

Samples

Input Sample

{
  "MetaData": {
    "messageType": "PostMeasurePoint",
    "assetId": "assetId",
    "deviceKey": "deviceKey",
    "productKey": "productKey",
    "orgId": "yourOrgId",
    "ts": "1622176678155"
  },
  "Body": {
    "modelId":"Inverter_Demo_LY",
    "INV.GenActivePW":"67",
    "productKey":"productKey"
  }
}

Output Sample

{
  "MetaData": {
    "messageType": "PostMeasurePoint",
    "assetId": "assetId",
    "deviceKey": "deviceKey",
    "productKey": "productKey",
    "orgId": "yourOrgId",
    "componentResult": "Success",
    "ts": "1622176678155"
  },
  "Body": {
    "modelId":"Inverter_Demo_LY",
    "INV.GenActivePW":"67",
    "productKey":"productKey"
  }
}