Rule Node
Rule nodes mainly include component type (type) and configuration (configuration). Nodes are distinguished by their component type, such as: js filter component, mqtt push component, restApiCall component, etc. The node behavior and capabilities are dynamically changed by the component configuration. Component list and configuration reference: Standard Components | Extension Components | Custom Components
The following is an example of rule node configuration:
{
"id": "s3",
"type": "restApiCall",
"name": "Push data",
"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
Edit this page on GitHub (opens new window)
Last Updated: 2024/10/23, 10:13:01