Logstash - transport and process your logs, events, or other data
Find a file
2014-12-17 16:57:05 +00:00
acceptance_spec More fixes 2014-12-03 17:04:10 +00:00
bin Use exec instead of sourcing 2014-11-05 02:45:36 +00:00
bot Warm welcome to bot,may it serves you well 2013-03-11 07:13:54 +01:00
docs Fix docgen with correct path to gem's 2014-12-16 17:00:50 +00:00
lib removed unused code 2014-12-10 23:48:19 +00:00
locales [JIRA-2046][JIRA-2181] fix usage help 2014-11-21 13:40:55 +00:00
patterns allow user@hostname in commonapache log 2014-10-08 16:12:39 -07:00
pkg Remove the log parameter as web doesn't allow it 2014-09-09 15:35:09 +01:00
rakelib Add doc generation tasks to logstash 2014-12-17 16:57:05 +00:00
spec add test to sprintf to cover metadata support 2014-12-01 19:32:43 +00:00
test added apache logs, changed description and now computes top 20% 2014-11-22 00:11:43 +00:00
tools Add doc generation tasks to logstash 2014-12-17 16:57:05 +00:00
.gitignore do not ignore .lock files 2014-12-10 23:48:18 +00:00
.tailor - add .tailor config 2012-12-03 16:04:27 -08:00
CHANGELOG Added performance improvements 2014-12-09 21:37:11 +00:00
CONTRIBUTING.md Reference github issues now. 2014-07-14 22:21:37 -04:00
CONTRIBUTORS ElasticSearch output plugin to support multiple hosts and enhance stability. (by Hao Chen) 2014-10-09 17:26:24 -07:00
dripmain.rb logstash boot sequence cleanup & drip support fix 2014-07-13 20:09:40 -04:00
gembag.rb gem bundling refactor 2014-10-06 17:08:16 -04:00
LICENSE Update License 2014-11-07 13:13:03 +00:00
logstash-event.gemspec . 2013-09-11 11:02:20 -07:00
logstash.gemspec removed coveralls dev dependency, more .bundle dir cleanup, install without parameter fix 2014-12-10 23:48:19 +00:00
Makefile Refactor build tooling to use Ruby 2014-10-22 17:04:58 +00:00
Rakefile Exposing the rake vendor:clean method to the help message 2014-11-11 06:32:26 +00:00
README.md Add code climate badge to show off :) 2014-11-21 20:19:03 +00:00
require-analyze.rb - hacky script to analyze the DEBUG=require csv output grouped by 2013-12-07 12:13:04 -08:00
STYLE.md - clean up style guide a bit 2013-01-03 17:23:36 -08:00

Logstash Code Climate

Logstash is a tool for managing events and logs. You can use it to collect logs, parse them, and store them for later use (like, for searching). Speaking of searching, Logstash comes with a web interface for searching and drilling into all of your logs.

It is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.

For more info, see http://logstash.net/

logstash-contrib

AKA "Where'd that plugin go??"

Since version 1.4.0 of Logstash, some of the community-contributed plugins were moved to a new home in the Elasticsearch logstash-contrib repo. If you can't find a plugin here which you've previously used, odds are it is now located there. The good news is that these plugins are simple to install using the Logstash manual plugin installation script.

Need Help?

Need help? Try #logstash on freenode irc or the logstash-users@googlegroups.com mailing list.

You can also find documentation on the http://logstash.net site.

Developing

To get started, you'll need any ruby available and it should come with the rake tool.

Here's how to get started with Logstash development:

rake bootstrap

Other commands:

# to use Logstash gems or libraries in irb, use the following
# this gets you an 'irb' shell with Logstash's environment
bin/logstash irb

# Run Logstash
bin/logstash agent [options]

Notes about using other rubies. If you don't use rvm, you can probably skip this paragraph. Logstash works with other rubies, and if you wish to use your own ruby you must set USE_RUBY=1 in your environment.

We recommend using flatland/drip for faster startup times during development. To tell Logstash to use drip, set USE_DRIP=1 in your environment.

Testing

There are a few ways to run the tests. For development, using bin/logstash rspec <some spec> will suffice:

% bin/logstash rspec spec/filters/grok.rb
...................

Finished in 0.123 seconds
19 examples, 0 failures

If you want to run all the tests from source, do:

rake test

Building

Building is not required. You are highly recommended to download the releases we provide from the Logstash site!

If you want to build the release tarball yourself, run:

rake artifact:tar

You can build rpms and debs, if you need those. Building rpms requires you have fpm, then do this:

# Build an RPM
rake artifact:rpm

# Build a Debian/Ubuntu package
rake artifact:deb

Project Principles

  • Community: If a newbie has a bad time, it's a bug.
  • Software: Make it work, then make it right, then make it fast.
  • Technology: If it doesn't do a thing today, we can make it do it tomorrow.

Contributing

All contributions are welcome: ideas, patches, documentation, bug reports, complaints, and even something you drew up on a napkin.

Programming is not a required skill. Whatever you've seen about open source and maintainers or community members saying "send patches or die" - you will not see that here.

It is more important to me that you are able to contribute.

For more information about contributing, see the CONTRIBUTING file.