| Name | Fields Renamer |
| Version | v1.0.1 |
| DockerHub | beetaone/fields-renamer |
| Authors | Jakub Grzelak |
Rename fields (labels) in your data. List of comma (,) separated pairs of fields to rename in format old_name=new_name. For example, to rename fields temp to temperature and V to volume the list should look like temp=temperature, V=volume.
The following module configurations can be provided in a data service designer section on beetaone platform:
| Name | Environment Variables | type | Description |
|---|---|---|---|
| Rename Fields | RENAME_FIELDS | string | List of comma (,) separated pairs of fields to rename in format old_name=new_name. |
Other features required for establishing the inter-container communication between modules in a data service are set by beetaone agent.
| Environment Variables | type | Description |
|---|---|---|
| MODULE_NAME | string | Name of the module |
| MODULE_TYPE | string | Type of the module (Input, Processing, Output) |
| EGRESS_URLS | string | HTTP ReST endpoints for the next module |
| INGRESS_HOST | string | Host to which data will be received |
| INGRESS_PORT | string | Port to which data will be received |
bottle
requests
Input to this module is:
{
"temp": 12,
"V": 3
}
[
{
"temp": 12,
"V": 3
},
{
"temp": 21,
"V": 4
}
]
If Rename Fields is set to temp=temperature, V=volume Output of this module is:
{
"temperature": 12,
"volume": 3
}
[
{
"temperature": 12,
"volume": 3
},
{
"temperature": 21,
"volume": 4
}
]
Content type
Image
Digest
sha256:d980ebd5c…
Size
49.1 MB
Last updated
almost 2 years ago
docker pull beetaone/fields-renamer:v1.0.1