Hello All,
I am facing a issue to split the filepath with backslash,
Below is my code for split filepath with \
Logstash Code
input {
file {
path => "C:\logstash-2.3.1\CSV\SQL.csv"
type=>"sql"
}
}
filter {
mutate {
split => [ "path", '\' ]
}
}
Thanks for your help in advance,