Hi guys, say im sending an data to log stahs through http, the data is separated in commas and each line represent and single event (that i want it to be independent as a document)
Data for example:
"192.168.0.1","255.255.255.245","01-00-5e-40-98-8f","static"|
"192.168.0.1","255.255.255.250","01-00-5e-7f-ff-fa","static"|
"192.168.0.1","255.255.255.255","ff-ff-ff-ff-ff-ff","static"|
i used csv filter like so :
csv {
columns => [
"interface",
"ip address",
"physical address",
"type"
]
separator => ","
}
and i want each line to be represented as a document with this filter, but i dont quite get how do i seperate the events.
Edit: Problem solved.