Jordan Sissel
b6b43df7f5
- add async/sync support to LogStash::Search::ElasticSearch#histogram
2011-04-19 01:27:01 -07:00
Jordan Sissel
b1328b5258
- hackishly factor out web parts into separate files.
...
This makes unsettling use of Kernel#eval(File.new(somepath).read, ...)
:(
2011-04-19 01:13:31 -07:00
Jordan Sissel
aa4c5342d4
- Add %{+TIMEFORMAT} support for sprintf.
2011-04-18 21:42:36 -07:00
Jordan Sissel
1ddb988b25
- work around https://github.com/matadon/mizuno/issues/9
2011-04-18 10:45:57 -07:00
Jordan Sissel
0898e9f0ea
- fix watching bug
...
- use Logger
2011-04-12 19:08:50 -07:00
Jordan Sissel
602f406734
- Up required version of filewatch
...
- File glob tailing works.
2011-04-12 18:33:50 -07:00
Jordan Sissel
81d613c1ca
- More filewatch support - now uses tailglob
2011-04-12 17:40:23 -07:00
Jordan Sissel
1afe27394c
- Optional priority/facility/whatever crap
...
- Optional hostname. Fixes https://github.com/logstash/logstash/issues/6
2011-04-10 19:55:44 -07:00
Jordan Sissel
8dccdf4b46
- remove ap
2011-04-10 17:58:16 -07:00
Jordan Sissel
1a1a3c6000
- Add pretty-printing. Doesn't actually work all that well.
2011-04-09 02:48:49 -07:00
Jordan Sissel
74aad9d5da
- Allow multiple formats for the same field, like this:
...
fieldfoo => [ "format1", "format2" ]
also valid:
fieldfoo => "format1"
fieldfoo => "format2"
This is necessary because syslog dates are stupid and Joda can't parse
them without help. Here is what I needed to do:
date {
type => "linux-syslog"
timestamp => "MMM d HH:mm:ss"
timestamp => "MMM dd HH:mm:ss"
}
2011-04-09 02:47:31 -07:00
Jordan Sissel
6aae816902
use to_json properly
2011-04-09 02:47:00 -07:00
Jordan Sissel
17575b4fde
- add note about non-function
2011-04-09 02:02:18 -07:00
Jordan Sissel
3f1406f03c
- fix up the logstash runner (for jar running)
...
- remove references to rubygem
2011-04-09 01:57:17 -07:00
Jordan Sissel
6e861187b9
- use logstash.runner as the main of the jar file
2011-04-07 19:09:31 -07:00
Jordan Sissel
db46c2dd50
- add runner
2011-04-07 19:08:26 -07:00
Jordan Sissel
c48fe7991f
- make the twitter input work again
2011-04-07 18:42:01 -07:00
Jordan Sissel
f76c88a1ad
- fix broken tests
2011-04-07 17:25:51 -07:00
Jordan Sissel
fcce185e18
- More config doc and related cleanup
2011-04-07 10:30:19 -07:00
Jordan Sissel
6580721103
- config docs
2011-04-07 10:02:13 -07:00
Jordan Sissel
ffb905a64d
- more config docs and related improvements
2011-04-07 09:58:53 -07:00
Jordan Sissel
86422d6966
- Add config docs
...
- add more defaults and clean up any unnecessary initialize methods
2011-04-07 09:26:51 -07:00
Jordan Sissel
f29e1acd41
Merge branch 'master-gelf-fixes' of https://github.com/lusis/logstash into lusis-master-gelf-fixes
2011-04-07 01:02:17 -07:00
Jordan Sissel
28175422c8
add doc comment
2011-04-07 00:45:37 -07:00
Jordan Sissel
5e1b40c78f
- Add config docs
2011-04-07 00:45:21 -07:00
Jordan Sissel
01d1d594c1
- Allow setting config default values
2011-04-07 00:04:21 -07:00
John E. Vincent
61f1bdb2e0
fixing notify call so opts will be passed
2011-04-06 15:38:10 -04:00
Jordan Sissel
4d676dc28f
- Open a named pipe (fifo) in jruby with 'r+' not 'a' (otherwise you get
...
"illegal seek" exceptions
2011-04-06 01:51:23 -07:00
Jordan Sissel
cc211a29da
- update grep filter to work with new config + jrubyland
2011-04-06 01:51:11 -07:00
Jordan Sissel
b7d24943ea
- Try parsing a url when setting source
2011-04-06 01:50:58 -07:00
Jordan Sissel
0fafebd2c7
- fix up the nagios output
2011-04-06 01:24:09 -07:00
Jordan Sissel
38723e6486
remove comment
2011-04-06 01:19:33 -07:00
Jordan Sissel
b7ea986ced
- start converting the twitter input to use tweetstream gem
2011-04-06 01:07:05 -07:00
Jordan Sissel
97cc131de2
- Add :array validation
...
- Add :password validation
- Add class LogStash::Util::Password for keeping passwords from being
accidentally logged.
2011-04-06 01:03:00 -07:00
Jordan Sissel
1e956d50e2
Merge branch 'gelf-fixes' of https://github.com/lusis/logstash into lusis-gelf-fixes
2011-04-05 23:50:32 -07:00
Jordan Sissel
b3e1921169
- set ruby thread name in addition to java thread name
2011-04-04 01:02:04 -07:00
Jordan Sissel
0ecb528612
- set thread name for inputs by default
2011-04-04 01:01:24 -07:00
Jordan Sissel
9a7f67e99f
- remove em-tail from inputs/stdin
2011-04-04 00:37:06 -07:00
Jordan Sissel
e671dc1166
- stomp works now in jruby. Except for this bug:
...
http://jira.codehaus.org/browse/JRUBY-4941
2011-04-04 00:35:21 -07:00
Jordan Sissel
81f9cb9f32
- use the same config names for password for amqp.
2011-04-03 23:37:18 -07:00
Jordan Sissel
9652044820
- Allow durable exchanges ( https://logstash.jira.com/browse/LOGSTASH-37 )
2011-04-03 23:35:00 -07:00
Jordan Sissel
424aef4803
- Update grok filter to handle multiple messages if
...
LogStash::Event#message is an array. (LOGSTASH-38)
2011-04-03 22:40:27 -07:00
Jordan Sissel
0d5451e8cf
- got logstash-web working in jruby now
2011-04-02 09:38:10 -07:00
John E. Vincent
3b0f84b1b7
making all gelf params tunable
2011-03-31 21:24:33 -04:00
John E. Vincent
39377a4258
fixing gelf output for deprecated usage
2011-03-31 13:11:35 -04:00
Pete Fritchman
8a6935b3ec
Merge remote branch 'origin/master'
...
Conflicts:
lib/logstash/agent.rb
2011-03-27 21:52:09 -07:00
Pete Fritchman
6230598db3
show backtrace in debug mode
2011-03-27 21:51:10 -07:00
Pete Fritchman
67f271962e
fix tcp output
2011-03-27 21:50:35 -07:00
Jordan Sissel
02e1d53280
- only yield to Agent#run's block when all inputs and outputs have been
...
registered. Consider it like a 'ready' callback.
2011-03-27 21:19:40 -07:00
Jordan Sissel
0b961c1c1c
Merge branch 'master' of github.com:logstash/logstash
2011-03-27 21:00:21 -07:00