Hi,
I'm trying to not have in my events the header of a txt file separated by tab (I suppose it's at index time), after that I extract field at search time. The problem is that everything I tried left the header in the event.
Any key?
Here my code in props.conf and transfomrs.conf:
props.conf
[mysourcetype]
NO_BINARY_CHECK = 1
pulldown_type = 1
TRANSFORMS-NoHeader = NoHeader
REPORT -mysourcetypeextract = extract_mysourcetype
transforms.conf
[extract_mysourcetype]
DELIMS = "\t"
FIELDS = personid, email, createdate, time_window_web
[NoHeader]
REGEX = ^"Personid".*
DEST_KEY = queue
FORMAT = nullQueue
and the first lines of my log file
"Personid" "Email" "Createdate" "Time Window Web"
"0000000" "
[email protected]" "00/00/1900" "00:00"
I really don't know what to do, I've tried all the answer on the site 🙂
Thank you for the help
Erica
... View more