Connect MySQL through JDBC in filebeats in Elastic Cloud

686 views Asked by At

I am not able to connect MySQL in filebeats in Elastic Cloud. No error I am getting.

Can anyone guide me how to do it ?

This configuration I'm using

 input {
        jdbc {
            jdbc_driver_library => "mysql-connector-java-5.1.46-bin.jar"
            jdbc_driver_class => "com.mysql.jdbc.Driver"
            jdbc_connection_string => "jdbc:mysql://connectionstring"
            jdbc_user => "username"
            jdbc_password => "password"
            schedule => "* * * * *"
            statement => "SELECT * from tablename"
        }
    }
    
    output {
        stdout { codec => json_lines }
        elasticsearch {
            "hosts" => "hostId"
            "index" => "index"
            "document_type" => "data"
        }
    }
0

There are 0 answers