logstash-input-mongodb
logstash-input-mongodb copied to clipboard
MongoDB input plugin for Logstash
Currently, the `dig` parse method is the only one that explicitly ignores `_id`, per [Line 317](https://github.com/phutchins/logstash-input-mongodb/blob/master/lib/logstash/inputs/mongodb.rb#L317). Should that check be added to the other parse methods as well? It currently...
I'm running into the same issue someone else ran into a while ago. The issue was closed because he didn't respond so I'll just open another one. I have many...
This is more of a question than an issue, although it could potentially be with the documentation. Is the database file specified in the config still used? In the current...
From the gemspec file, it looks like the version is up to 0.4.1, however installing with plugin install gives 0.3.3. Thanks for any update!
Adding helpful documentation.
https://www.elastic.co/guide/en/logstash/5.0/input-plugins.html I also can't find much about if this plugin officially is compatible with logstash 5. Is it? If so I could open a pull request to update the readme...
My collection configuration looks like this: `collection => '.*'` Is there a way i can find out the collection of which the document is coming from? By looking into the...
`input { jdbc { jdbc_connection_string => "jdbc:oracle:thin:@drssqlentrac_sc.aaa-acg.net:1521/orasliud" jdbc_user => "admin" jdbc_password => "admin" jdbc_driver_library => "C:\Official\ojdbc6-11.2.0.3.jar" jdbc_driver_class => "Java::oracle.jdbc.driver.OracleDriver" statement => "SELECT CI.FIRST_NAME||'_'||CI.LAST_NAME||'_'||CI.GENDER||'_'||TO_CHAR(CI.DATE_OF_BIRTH,'YYYYMMDD') AS message, CI.TITLE AS prefix, CI.FIRST_NAME AS...
Hi All, Aggregate filter not working with logstash 5.4.2. Below is my code. Anybody give advise to me. `input { jdbc { jdbc_connection_string => "jdbc:oracle:thin:@drssqlentrac_sc.aaa-acg.net:1521/orasliud" jdbc_user => "admin" jdbc_password =>...
When I use the plugin the CPU reaches 100 percent. The MongoDB database has approximately 500,000 documents in the collection. The configuration I have is the following: ``` input {...