Logstash Plugin
This is a plugin for Logstash.
Documentation
Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one central location.
- For formatting code or config example, you can use the asciidoc
[source,ruby]
directive - For more asciidoc formatting tips, see the excellent reference here https://github.com/elastic/docs#asciidoc-guide
Why this plugin
When setting up logging stacks, we weren't able to use the solr_http output plugin in logstash conf to talk to solr On the other hand, we found SiLK 1.5 stack is shipping its own customized version of logstash, which is a java jar file. Though the example provided with customized version of SiLK logstash was able to pipe events to solr server, our needs were
- We already had a logstash server running for a while and it had a great ecosystem of input, filter and output plugins
- We would like to use this existing logstash server and NOT have to re-invent the wheel
- We want multiple conf files to be loaded by logstash server, which the SiLK 1.5 solrWriter for logstash did not allow as per their documentation
Specifically, we want the same logstash server (that elastic search provides) to work with solr. It should be as simple as install a plugin, write the output conf and see the pipeline work, by viewing the events on the other side of solr
Installing and using
- git clone
- JRUBY >=1.7 (We tried with MRI Ruby, however that did not go well. Guess because logstash is developed in JRUBY)
- If you are on windows, use pik and switch to use jruby (pik use ). If on *nix, use rvm to switch to jruby
- jgem build logstash-output-solr_post.gemspec (output should be a gem like logstash-output-solr_post-0.1.gem
- Copy this gem to ~/logstash root folder
- Install as output plugin to logstash using "./bin/plugin install logstash-output-solr_post-0.1.gem"
- ./bin/plugin list to verify that the plugin installed successfully and registered as output plugin
- See the next section on usage instructions
How does this plugin do it
It is possible to do a simple http POST to solr end point and post documents. Hence, we wrote simple logic extending logstash output base class and POST the event to solr endpoint. Of course, since solr expects the http post payload to be in a certain format, we format the event and then directly do a POST. That is it!
Working Example
Solr
Version: 5.3.1
Note: We tried starting solr in schemaless mode (gettingstarted collection automatically created), however we did not have success posting events directly to http://localhost:8983/solr/update?commit=true&wt=json endpoint
Logstash (2.0.0) conf
input {
tcp {
type => "eventlog"
port => 5544
codec=> "json"
}
}
output {
solr_post{
solr_url => "http://localhost:8983/solr/mycollection/update?commit=true&wt=json"
}
}
where 'mycollection' is the name of your collection. We require collection name in the url
Windows nxlog (nxlog-ce-2.9.1347) conf
<Extension json>
Module xm_json
</Extension>
<Extension xml>
Module xm_xml
</Extension>
<Input in>
Module im_msvistalog
Exec $raw_event=to_json();
</Input>
<Output out>
Module om_tcp
Host 127.0.0.1
Port 5544
</Output>
<Route r>
Path in => out
</Route>
We have used the above conf and were able to use this plugin to pipe events through the pipeline. We were also able to view the events in Banana. Below is how it looked for us
TODO
- Use idle flush time, flush size & documents parameters (currently it is declared inside the code but not used)
- Write rspec unit tests
- Support for XML (depends on need for the community)
- Register this plugin for logstash plugin binary
- Miscellaneous
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request