id: version-0.68.0-org.apache.streampipes.processors.transformation.flink.field-renamer title: Field Renamer sidebar_label: Field Renamer original_id: org.apache.streampipes.processors.transformation.flink.field-renamer


Description

Replaces the runtime name of an event property with a custom defined name. Useful for data ingestion purposes where a specific event schema is required.


Required input

There is no specific input required.


Configuration

Field

Specifies the field to rename.

NewFieldName

Specifies the new runtime name of the field.

Output

Example:

Old Output:

{
  'timestamp': 16003000, 
}

New Ouput:

{
  'time': 16003000, 
}