@anwar114 the issue is with your csv data.
What you want to do is escape the quotations or remove them. So the data should be
as such:
field1, field2, field3, field4, field5, field6, field7
"123","EMPTY","1766 Bytes",32770: ALL_REQ:2 | CT_FLAG(32768),131680: 20(32) | CT_FLAG |MODIFIED:20000(131072),"44d5","200 bytes"
OR:
field1, field2, field3, field4, field5, field6, field7
"123","EMPTY","1766 Bytes",\"32770\": ALL_REQ:2 | CT_FLAG(32768),\"131680\": 20(32) | CT_FLAG |MODIFIED:20000(131072),"44d5","200 bytes"
OR:
field1, field2, field3, field4, field5, field6, field7
123,EMPTY,1766 Bytes,32770: ALL_REQ:2 | CT_FLAG(32768),131680: 20(32) | CT_FLAG |MODIFIED:20000(131072),44d5,200 bytes
and the csv sourcetype will work as expected
... View more