Hi @super_saiyan, as hinted by @PickleRick, you have to use the SEDCMD command or use props and transforms associated to the sourcetype you're using. In few words, you have to find the regex to identify the column to exclude, e.g. if you have 100 columns divided by comma ",", you could use a regex like this: in props.conf [your_sourcetype]
TRANSFORMS-delete_column_80 = delete_column_80 in transforms.conf [delete_column_80]
REGEX = ^(([^,]+,){80})[^,]+,(([^,]+,){19})
FORMAT = $1$2
DEST_KEY = _raw For more infos see at https://docs.splunk.com/Documentation/Splunk/8.2.6/Data/Anonymizedata Ciao. Giuseppe
... View more