Logstash.Config syntax/query/error

Hey Community,

Been beating my head against the wall all week over this error. I think its syntax but I can't find the error.

Failed to execute action {:action=>LogStash::PipelineAction::Create/pipeline_id:main, :exception=>"LogStash::ConfigurationError", :message=>"Expected one of #, \", ', } at line 15, column 9 (byte 362) after input 

Edit: I removed this query and it works so now I have it dialed down to this query.

Here is the query

 jbdc { 
            tags => ["lsorg"] 
            jdbc_driver_library => "/usr/share/logstash/logstash-core/lib/jars/ojdbc7-12.1.0.2.jar" 
            jdbc_driver_class => "Java::oracle.jdbc.driver.OracleDriver" 
            jdbc_connection_string => "jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=${logstash.oracle.host})(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=${logstash.oracle.serviceName})))" 
            jdbc_user => "${lsDbUser.username}" 
            jdbc_password => "${lsDbUser.password}"
            schedule => "0 * * * *"
            statement => "SELECT * FROM ${logstash.oracle.dbName}.ORG"  
          } 
    

figured it out >_> , been putting

jbdc

this whole time :man_facepalming:

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