Commit graph

79 commits

Author SHA1 Message Date
Lisa Cawley
10d85e944f [DOCS] Build Logstash Reference from logstash repo (#9078) 2018-01-31 11:19:25 -08:00
Benjamin Boutier
5e417bd877 fix: typo (double "under" word)
Fixes #6950
2017-04-25 00:32:47 +00:00
Suyog Rao
c5c749b649 Update README.md 2016-11-28 12:13:19 -08:00
Andrew Cholakian
6c42c3be20 Initial .travis.yml
Fixes #4608
2016-05-27 19:59:54 +00:00
Morton Fox
ba3cfe05b9 CONTRIBUTING file has moved.
Fixes #5145
2016-04-20 19:04:23 +00:00
Suyog Rao
683302e26d Rename bin/plugin to bin/logstash-plugin
This adds support for packs and fixes the problem where bin/plugin
pollutes the PATH namespace

Fixes #4871

Fixes #4874
2016-03-24 00:23:15 +00:00
Thomas Decaux
f61e9a8cc5 Remove duplicate text about plugins
Fixes #4773
2016-03-09 02:16:14 +00:00
Jeffrey Charles
113c97bc70 Add docs for troubleshooting old rubygems error
Fixes #4707
2016-02-19 15:05:07 +00:00
ReadmeCritic
0bfb60b47a Update README URLs based on HTTP redirects
Fixes #4200
2016-01-04 18:44:20 +00:00
Ryan MacLean
1016dd1946 Update README.md
Committing again after rebase. One small typo.

Fixes #4405
2016-01-04 18:40:49 +00:00
Ryan MacLean
a3eb76d65b Update README.md
Fixes #4402
2015-12-28 19:11:03 +00:00
Pere Urbon-Bayes
c517e67596 update the README to show the last versions master, 2.x and 2.1
Fixes #4217
2015-11-24 12:19:54 +00:00
Jordan Sissel
ebb5ed71cc Remove old 1.5.x repo migration notes
Fixes #4179
2015-11-11 18:12:10 -08:00
Pere Urbon-Bayes
6218cde793 added integration test status badges
Fixes #4049
2015-10-16 14:32:02 +00:00
Pere Urbon-Bayes
a8f86df53d added jenkins badges for all main branches
Fixes #4049
2015-10-16 14:32:02 +00:00
Stanislav
3fb87e287b Fix typo in README.md
Fixes #3979
2015-09-30 09:30:24 +00:00
Colin Surprenant
b1cd68af1e much needed refresh
note on USE_RUBY=1

note on bin/logstash rspec
2015-05-04 12:47:04 -04:00
Suyog Rao
8150903ef8 Add JAVA_HOME as an extra step for windows
Closes #2401
2015-03-18 15:21:06 -07:00
Suyog Rao
c7eae8a19d Add another blank line
Fixes #2785
2015-03-06 03:45:39 +00:00
Suyog Rao
3b708f5935 Fix #2781
Fixes #2785
2015-03-06 03:45:39 +00:00
Pere Urbon-Bayes
b1a670ef3a update the readme with some reminders for the test run fase
remove some empty lines

Fixes #2775
2015-03-05 21:29:28 +00:00
Pier-Hugues Pellerin
10bef6cc29 Update README with the right rake task to setup a development environment.
Fixes #2690
2015-02-25 17:26:46 +00:00
Aaron Mildenstein
e5c78c7c66 Added Kibana information and link.
Fixes #2661
2015-02-20 22:53:18 +00:00
Aaron Mildenstein
3986158bac First pass at cleaning out logstash web
All internal references, flags, kibana, vendor, everything must go!

If it referenced kibana or logstash-web, it is deprecated, and removed!

Operators are standing by...

Fixes #2661
2015-02-20 22:53:18 +00:00
Suyog Rao
6098a4f0cd Fixed the backtick
Fixes #2484
2015-01-30 20:09:36 +00:00
Suyog Rao
34e3c1a9d9 Update to current dev environment Fixes #2112, #1527
Fixes #2484
2015-01-30 20:09:36 +00:00
Pere Urbon-Bayes
f6e975e055 make sure the coveralls badge is the master one
Fixes #2439
2015-01-27 14:32:19 +00:00
Pere Urbon-Bayes
3ed3bccb91 add the coveralls badge to the readme
exclude the devutils gem from the simplecov filters

Revert "exclude the devutils gem from the simplecov filters"

This reverts commit 04cd2894fbea74f92b9eca301ba39227d515de89.

Fixes #2412
2015-01-27 12:15:31 +00:00
Suyog Rao
3594f18071 Changes from review
Fixes #2383
2015-01-21 02:01:57 +00:00
Suyog Rao
3a8ea4220e Update readme to reflect plugin split to repositories
Fixes #2383
2015-01-21 02:01:57 +00:00
Tobias Pfeiffer
cc2acb4084 Add code climate badge to show off :)
Fixes #2114
2014-11-21 20:19:01 +00:00
Jordan Sissel
920a9e9362 Refactor build tooling to use Ruby
The new way to build is using 'rake' and not 'make'.

For some some attempt at compatibility, any 'make' invocation will
invoke rake. `make foo` will invoke `rake foo`.

This is for #1640

Major changes:
* rake is used instead of make. This allows us to more easily improve,
  debug, and test the build tooling.
* The build process can be bootstrapped from any Ruby that has
  Rake available. Bootstrapping rake is automatic will download JRuby and
  re-execute itself under JRuby.
* rpm and deb packages no longer list any java as dependencies. This
  is the result of user discomfort and discussions which concluded
  that there is no good way to "depend" on Java via rpm or deb.

Internal changes:
* Vendoring paths are project-based. Each vendor directory is now
  specific as vendor/<project>/... For example, JRuby is dumped into
  vendor/jruby/...

Other changes:

* We don't use jruby-complete anymore. We now use bin/jruby as the entry point.
  This improves the startup time of Logstash on my laptop by approximately
  1.5 seconds (~25% speedup of startup time). Testing `bin/logstash
  version` speed; 5 runs each:

  * Before patch: 7.27 7.55 7.26 7.42 7.47
  * After patch: 5.54 5.97 5.67 5.58 5.54

Smaller changes:
- removed 'env' subcommand
- Remove 'deps' subcommand. Replaced by 'rake vendor:all'
- Add gem_home method for this platform's GEM_HOME
- .travis.yml removed because we haven't used Travis in a long time.
- bin/logstash exits nonzero with a useful message if JRuby can't be found.

Notes:

Invoke bundler via system() call instead of Bundler::CLI.
After some discussion in #bundler on freenode (very helpful!) on how
to do what we need to do with bundler, I was encouraged to not use the
bundler api from ruby, so system() it is.

Patch slightly modified to fit the new model of packaging (ruby instead
of shell invocation), but original author is obazoud in #1008.

Richard Pijnenburg helped with some of the code and was lovely in
helping test it.

Fixes #1640
2014-10-22 17:04:55 +00:00
Jordan Sissel
4f6582168f Update to reflect new JRuby default and USE_RUBY env option 2014-07-16 16:38:17 -07:00
Colin Surprenant
0d3df38cb9 logstash boot sequence cleanup & drip support fix
deprecated USE_JRUBY environment var
added USE_RUBY and USE_DRIP environment vars
centralized gem path handling in LogStash::Environment

use consistent discovery strategy
2014-07-13 20:02:42 -04:00
Colin Surprenant
422503d451 use latest doc url 2014-05-06 15:14:22 -04:00
Kurt Hurtado
8144fbe49e reverse bracketology 2014-04-09 14:34:13 -07:00
Kurt Hurtado
35a0c97620 quick writeup on logstash-contrib for README 2014-04-09 11:44:36 -07:00
Jordan Sissel
af178651fa Remove references to flatjar or jar or java invocations. 1.4.0+ no longer provides this 2014-03-17 17:10:26 -07:00
Marcus Vinicius Ferreira
53d83f10bb README.md as '0644' 2014-03-05 21:53:11 -03:00
Richard Pijnenburg
e91dac1444 Merge pull request #1121 from electrical/update_es_jruby
Update ES and jruby
2014-02-25 20:06:38 +00:00
Richard Pijnenburg
736a89f972 Update ES and jruby
Updating ES to 1.0.1
Updating Jruby to 1.7.11
2014-02-25 21:05:31 +01:00
Jordan Sissel
f720f38bb5 - Remove link to Travis since we haven't used that in ages
- Use 'Logstash' capitalization
2014-02-25 11:13:47 -08:00
Ciaran Downey
726fc90b58 Update README with new travis URL 2014-02-21 17:06:00 -08:00
Richard Pijnenburg
af513612f7 Merge pull request #798 from simono/patch-1
Fix link to FPM
2014-01-15 06:11:10 -08:00
Aaron Mildenstein
ce44d827a0 Pre 1.3.2 updates. Bump ES version and documentation fixes. 2013-12-23 11:18:08 -06:00
Simon Olofsson
09e60be69f Fix link to FPM 2013-11-25 15:36:50 +01:00
Jordan Sissel
140dfe4933 - Remove link to releases that no longer exists. 2013-11-22 11:01:29 -08:00
Kubes
ffa311c7df Added make update 2013-09-19 15:08:36 -07:00
Jordan Sissel
675cffdc2c - fix syntax 2013-09-16 17:23:59 -07:00
Jordan Sissel
d0aeae27b3 - add CONTRIBUTING docs 2013-09-16 17:23:37 -07:00