Problem in my conf file

Hi, I'm trying to start my logstash pipe configuration file but it tell me "command not found" :
''' /home/logstash/test.conf: ligne 3: [/home/logstash/testdata.log]: Aucun fichier ou dossier de ce type
/home/logstash/test.conf: ligne 4: sincedb_path : commande introuvable
/home/logstash/test.conf: ligne 5: start_position : commande introuvable
/home/logstash/test.conf: ligne 6: erreur de syntaxe près du symbole inattendu « } »
/home/logstash/test.conf: ligne 6: ` }' '''

There is my file :
''' input {
file {
path => ["/home/logstash/testdata.log"]
sincedb_path => "/dev/null"
start_position => "beginning"
}
}
filter {
}
output {
stdout {
codec => json
}
}
'''

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.