We use a transform.conf file with regex to extract the field values. However, the field name in the data input is not in human-readable format. But each value is predictable and we have a reference csv that would allow us to correlate these data together.
uadhshuasdfiuh = Server1
xcoijcxvboijcxvb = Server2
These fields are created on the fly and there are hundreds of them. My question is how would automatically rename these fields, to be more usable in the Splunk ui?
use FIELDALIAS in props.conf-
FIELDALIAS-<class> = (<orig_field_name> AS <new_field_name>)
<orig_field_name>
is the original name of the field.<new_field_name>
is the alias to assign to the field.