规则节点
规则节点主要包含组件类型(type)和配置(configuration)。节点通过组件类型区分其能力,例如:js filter组件、mqtt 推送组件、restApiCall组件等。通过组件配置来动态变更该节点行为和能力。 组件列表和配置参考:标准组件 | 扩展组件 | 自定义组件
以下是规则节点配置示例:
{
"id": "s3",
"type": "restApiCall",
"name": "推送数据",
"debugMode": true,
"configuration": {
"restEndpointUrlPattern": "http://192.168.216.21:9099/api/socket/msg",
"requestMethod": "POST",
"maxParallelRequestsCount": 200
}
}
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
在 GitHub 上编辑此页 (opens new window)
上次更新: 2024/10/23, 10:13:01