Nacos Config Get
x/nacosConfigGet: reads the config content of a Data ID from nacos into msg.Data. Routes to Success on success, Failure on error.
Requires extension library: rulego-components-discovery (opens new window)
# Configuration
Inherits Common Connection Config. Extra fields:
| Field | Type | Description | Default |
|---|---|---|---|
| dataId | string | Config Data ID | none (required) |
| group | string | Config group | DEFAULT_GROUP |
# Output
Config content (raw string) is written to msg.Data, ready to be parsed by a downstream node (e.g. jsTransform).
# Example
{
"id": "get_cfg",
"type": "x/nacosConfigGet",
"configuration": {
"server": "127.0.0.1:8848",
"dataId": "app.json",
"group": "DEFAULT_GROUP"
}
}
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
# Related
- Service call: x/nacosServiceCall
- Config write: x/nacosConfigSet
- Config listen: endpoint/nacos
Edit this page on GitHub (opens new window)
Last Updated: 2026/07/31, 09:31:45