Hi ELK Community!
Hope you people are doing good.
I'm getting the below error :-
[2018-04-03T22:20:19,670][ERROR][logstash.agent ] Cannot create pipeli
ne {:reason=>"Expected one of #, { at line 14, column 11 (byte 317) after filter
{\n\t\tcsv{\n\t\t\t\t\t\t\n\t\t\tcolumns => ["SL","Team","countryName","
Audit","Period","Date","Resource","timeInIST","Hours","productionTyp
e","Comments"]\n\t\t\tseperator => ","\n\t\t\t} \n\t\t\t\tmutate"}
Below is my conf file:-
input {
file {
path => "C:\Users\DKRSingh\Downloads\ELK\Input\xxxxxx.csv"
start_position => beginning
}
}
filter {
csv{
columns => ["SL","Team","countryName","Audit","Period","Date","Resource","timeInIST","Hours","productionType","Comments"]
seperator => ","
}
mutate {
convert => { "SL" => "integer" , "Team" => "string" , "countryName" => "string" , "Hours" => "double" , "Date" => "string"}
}
}
output {
elasticsearch {
hosts => "localhost"
index => "Test2"
}
}