Fields and values

Hi All,

Could anyone help me to remove " this double quote in the field and value.What has to be done ?

FIELD is equal to DELSA="NR and value is 1235648978"

so I want it as

Field as DELSA=NR and value as 1235648978

Thanks,
Raj

Use a mutate filter and its gsub option.

mutate {
  gsub => ['name-of-field', '"', '']
}

Thank you so much Magnus that works :slight_smile: