FIWARE Orion 订阅 Node Red 插件
FIWARE Orion subscriptions to Node Red plugins
我正在尝试使用 Orion Context Broker 和 Node-Red 插件创建订阅。
我想创建自定义节点红色插件以适合我的用例。是否有任何用于订阅的示例 Node-Red 插件开发存储库?我必须使用 ngsi-proxy 还是直接从 Orion 获取结果?
我的订阅条款如下:
"description": "Notify Node Red on Sensor count attribute changes",
"subject": {
"entities": [
{
"idPattern": "urn:ngsi-ld:MySensor:001"
}
],
"condition": {
"attrs": [
"count"
]
}
},
"notification": {
"http": {
"url": "http://node-red:1880"
},
"attrs": [
"count"
],
"metadata": ["dateCreated", "dateModified"]
}
}
似乎有一些与 NGSIv2 相关的 Node Red 内容。你可以看看https://flows.nodered.org/node/node-red-contrib-fiware_official
我正在尝试使用 Orion Context Broker 和 Node-Red 插件创建订阅。 我想创建自定义节点红色插件以适合我的用例。是否有任何用于订阅的示例 Node-Red 插件开发存储库?我必须使用 ngsi-proxy 还是直接从 Orion 获取结果?
我的订阅条款如下:
"description": "Notify Node Red on Sensor count attribute changes",
"subject": {
"entities": [
{
"idPattern": "urn:ngsi-ld:MySensor:001"
}
],
"condition": {
"attrs": [
"count"
]
}
},
"notification": {
"http": {
"url": "http://node-red:1880"
},
"attrs": [
"count"
],
"metadata": ["dateCreated", "dateModified"]
}
}
似乎有一些与 NGSIv2 相关的 Node Red 内容。你可以看看https://flows.nodered.org/node/node-red-contrib-fiware_official