Send Measurement Point¶
Send Measurement Point 节点将前一个节点中的输出结果作为测点信息发送至 Kafka。
在 EnOS 管理控制台 > 设备管理 > 设备资产 > 设备详情 > 测点 中,鼠标悬浮在测点值上时,可以看到 时序洞察 的值是否更新。
或者订阅对应的 Kafka topic 以查看消息。具体订阅的 Kafka topic 取决于以下内容。
对于实时消息,topic 的格式是
MEASURE_POINT_ORIGIN_[OUID]
。若 OU ID 是 o180782221079,topic 将是MEASURE_POINT_ORIGIN_o180782221079
。对于离线消息,topic 的格式是
MEASURE_POINT_ORIGIN_OFFLINE_[OUID]
。若 OU ID 是 o180782221079,topic 将是MEASURE_POINT_ORIGIN_OFFLINE_o180782221079
。
节点类型¶
EnOS。
输入和输出能力¶
该节点具有多个入口点和 2 个出口点 (成功/失败)。
节点属性¶
名称
该节点的名称。
描述
该节点的描述。
使用限制¶
输入 msg 必须为 EnOS 标准数据格式,metadata 中需包含 asset ID,device key,product key 和 OU ID。
示例¶
输入示例¶
{
"MetaData": {
"messageType": "PostMeasurePoint",
"assetId": "assetId",
"deviceKey": "deviceKey",
"productKey": "productKey",
"orgId": "yourOrgId",
"ts": "1622176678155"
},
"Body": {
"modelId":"Inverter_Demo_LY",
"INV.GenActivePW":"67",
"productKey":"productKey"
}
}
输出示例¶
{
"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"
}
}