Logstash jdbc_streaming filter with Cubrid DB

input {
    stdin { }
}

jdbc_streaming {
        jdbc_driver_library => "/Users/user/Downloads/JDBC-9.2.29.0001-cubrid.jar"
        jdbc_driver_class => "cubrid.jdbc.driver.CUBRIDDriver"
        jdbc_connection_string => "jdbc:cubrid:127.0.0.1:33000:TEST:::?charset=utf-8"
        jdbc_user => "test"
        jdbc_password => "test"
        statement => "select '%{message}' from table"
        target => "code"
    }

output {
    stdout { }
}

I'm trying to use jdbc streaming filter with Cubrid DB. But, when I run logstash with config above, logstash failed to execture with error message :error=>"cubrid.jdbc.driver.CUBRIDDriver not loaded".

Is there any suggestion to solve it?

1 Like

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