i have a txt file that is seperated by semicolons ";" that i am sending via TCP. How do i set it up to where i can assign each seperation with a field? i tried doing it through the web manager but it wouldnt extract the fields.
This wouldn't work:
props.conf:
[xxx_fields]
DELIMS=";"
FIELDS = "x1", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9"
Example would be:
Header
x1;x2;x3;x4;x5;x6;x7;x8;x9
Raw Fields
x;x;x;x;x;x;x;x;x
Basically i just want to be able to search by the header fields...please help
... View more