logstash-lite 0.2.20110405105201 → 0.2.20110422152244
Sign up to get free protection for your applications and to get access to all the features.
- data/etc/agent.conf +32 -9
- data/lib/logstash/outputs/elasticsearch.rb +1 -0
- data/lib/logstash/outputs/gelf.rb +17 -4
- metadata +259 -236
data/etc/agent.conf
CHANGED
@@ -1,16 +1,39 @@
|
|
1
1
|
input {
|
2
|
-
stdin { }
|
3
|
-
|
4
|
-
|
5
|
-
|
2
|
+
#stdin { type => "stdintest" }
|
3
|
+
file {
|
4
|
+
path => "/var/log/*"
|
5
|
+
exclude => "*.log"
|
6
|
+
type => "linux-syslog"
|
6
7
|
}
|
8
|
+
|
9
|
+
#syslog {
|
10
|
+
#type => "syslog-network"
|
11
|
+
#port => 5544
|
12
|
+
#}
|
7
13
|
}
|
8
14
|
|
9
|
-
|
10
|
-
|
15
|
+
#filter {
|
16
|
+
#grok {
|
17
|
+
#type => "linux-syslog"
|
18
|
+
#pattern => "%{SYSLOGLINE}"
|
19
|
+
#}
|
20
|
+
#
|
21
|
+
#date {
|
22
|
+
#type => "linux-syslog"
|
23
|
+
#timestamp => "MMM d HH:mm:ss"
|
24
|
+
#timestamp => "MMM dd HH:mm:ss"
|
25
|
+
#timestamp8601 => ISO8601
|
26
|
+
#}
|
27
|
+
#}
|
11
28
|
|
12
|
-
|
13
|
-
|
14
|
-
|
29
|
+
output {
|
30
|
+
stdout {
|
31
|
+
#debug => true
|
15
32
|
}
|
33
|
+
|
34
|
+
#elasticsearch {
|
35
|
+
#host => "localhost"
|
36
|
+
#index => "example"
|
37
|
+
#type => "%{@type}"
|
38
|
+
#}
|
16
39
|
}
|
@@ -102,6 +102,7 @@ class LogStash::Outputs::Elasticsearch < LogStash::Outputs::Base
|
|
102
102
|
"exchange" => amqp_exchange_name,
|
103
103
|
"exchange_durable" => amqp_exchange_durable ? "true" : "false",
|
104
104
|
"exchange_type" => amqp_exchange_type,
|
105
|
+
"routing_key" => "",
|
105
106
|
},
|
106
107
|
"index" => {
|
107
108
|
"bulk_size" => 100,
|
@@ -9,15 +9,28 @@ require "logstash/namespace"
|
|
9
9
|
require "logstash/outputs/base"
|
10
10
|
|
11
11
|
class LogStash::Outputs::Gelf < LogStash::Outputs::Base
|
12
|
+
|
13
|
+
public
|
14
|
+
def initialize(url, config={}, &block)
|
15
|
+
super
|
16
|
+
|
17
|
+
@chunksize = @urlopts["chunksize"].to_i || 1420
|
18
|
+
@level = @urlopts["level"] || 1
|
19
|
+
@facility = @urlopts["facility"] || 'logstash-gelf'
|
20
|
+
|
21
|
+
end
|
22
|
+
|
12
23
|
public
|
13
24
|
def register
|
14
|
-
|
25
|
+
option_hash = Hash.new
|
26
|
+
option_hash["level"] = @level
|
27
|
+
option_hash["facility"] = @facility
|
28
|
+
|
29
|
+
@gelf = GELF::Notifier.new(@url.host, (@url.port or 12201), @chunksize, option_hash)
|
15
30
|
end # def register
|
16
31
|
|
17
32
|
public
|
18
33
|
def receive(event)
|
19
|
-
# TODO(sissel): Use Gelf::Message instead
|
20
|
-
gelf = GELF::Notifier.new(@url.host, (@url.port or 12201))
|
21
34
|
m = Hash.new
|
22
35
|
m["short_message"] = (event.fields["message"] or event.message)
|
23
36
|
m["full_message"] = (event.message)
|
@@ -30,6 +43,6 @@ class LogStash::Outputs::Gelf < LogStash::Outputs::Base
|
|
30
43
|
m["#{name}"] = value
|
31
44
|
end
|
32
45
|
m["timestamp"] = event.timestamp
|
33
|
-
gelf.notify(m)
|
46
|
+
@gelf.notify!(m)
|
34
47
|
end # def receive
|
35
48
|
end # class LogStash::Outputs::Gelf
|
metadata
CHANGED
@@ -1,274 +1,297 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-lite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
4
|
+
hash: 40220844304511
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 2
|
9
|
+
- 20110422152244
|
10
|
+
version: 0.2.20110422152244
|
6
11
|
platform: ruby
|
7
12
|
authors:
|
8
|
-
|
9
|
-
|
13
|
+
- Jordan Sissel
|
14
|
+
- Pete Fritchman
|
10
15
|
autorequire:
|
11
16
|
bindir: bin
|
12
17
|
cert_chain: []
|
13
18
|
|
14
|
-
date: 2011-04-
|
19
|
+
date: 2011-04-22 00:00:00 -07:00
|
15
20
|
default_executable:
|
16
21
|
dependencies:
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
22
|
+
- !ruby/object:Gem::Dependency
|
23
|
+
name: eventmachine-tail
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 3
|
31
|
+
segments:
|
32
|
+
- 0
|
33
|
+
version: "0"
|
34
|
+
type: :runtime
|
35
|
+
version_requirements: *id001
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: json
|
38
|
+
prerelease: false
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
hash: 3
|
45
|
+
segments:
|
46
|
+
- 0
|
47
|
+
version: "0"
|
48
|
+
type: :runtime
|
49
|
+
version_requirements: *id002
|
50
|
+
- !ruby/object:Gem::Dependency
|
51
|
+
name: amqp
|
52
|
+
prerelease: false
|
53
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
hash: 3
|
59
|
+
segments:
|
60
|
+
- 0
|
61
|
+
version: "0"
|
62
|
+
type: :runtime
|
63
|
+
version_requirements: *id003
|
64
|
+
- !ruby/object:Gem::Dependency
|
65
|
+
name: uuidtools
|
66
|
+
prerelease: false
|
67
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
68
|
+
none: false
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
hash: 3
|
73
|
+
segments:
|
74
|
+
- 0
|
75
|
+
version: "0"
|
76
|
+
type: :runtime
|
77
|
+
version_requirements: *id004
|
61
78
|
description: scalable log and event management (search, archive, pipeline)
|
62
79
|
email:
|
63
|
-
|
64
|
-
|
80
|
+
- jls@semicomplete.com
|
81
|
+
- petef@databits.net
|
65
82
|
executables:
|
66
|
-
|
67
|
-
|
68
|
-
|
83
|
+
- logstash
|
84
|
+
- logstash-web
|
85
|
+
- logstash-test
|
69
86
|
extensions: []
|
70
87
|
|
71
88
|
extra_rdoc_files: []
|
72
89
|
|
73
90
|
files:
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
91
|
+
- lib/logstash.rb
|
92
|
+
- lib/logstash/outputs/tcp.rb
|
93
|
+
- lib/logstash/outputs/websocket.rb
|
94
|
+
- lib/logstash/outputs/nagios.rb
|
95
|
+
- lib/logstash/outputs/gelf.rb
|
96
|
+
- lib/logstash/outputs/beanstalk.rb
|
97
|
+
- lib/logstash/outputs/amqp.rb
|
98
|
+
- lib/logstash/outputs/stdout.rb
|
99
|
+
- lib/logstash/outputs/base.rb
|
100
|
+
- lib/logstash/outputs/elasticsearch.rb
|
101
|
+
- lib/logstash/outputs/mongodb.rb
|
102
|
+
- lib/logstash/outputs/stomp.rb
|
103
|
+
- lib/logstash/outputs/internal.rb
|
104
|
+
- lib/logstash/logging.rb
|
105
|
+
- lib/logstash/rubyfixes/regexp_union_takes_array.rb
|
106
|
+
- lib/logstash/ruby_fixes.rb
|
107
|
+
- lib/logstash/web/server.rb
|
108
|
+
- lib/logstash/web/views/style.sass
|
109
|
+
- lib/logstash/web/views/main/index.haml
|
110
|
+
- lib/logstash/web/views/layout.haml
|
111
|
+
- lib/logstash/web/views/search/error.txt.erb
|
112
|
+
- lib/logstash/web/views/search/results.txt.erb
|
113
|
+
- lib/logstash/web/views/search/results.haml
|
114
|
+
- lib/logstash/web/views/search/error.haml
|
115
|
+
- lib/logstash/web/views/search/ajax.haml
|
116
|
+
- lib/logstash/web/views/header.haml
|
117
|
+
- lib/logstash/web/helpers/require_param.rb
|
118
|
+
- lib/logstash/web/public/css/smoothness/jquery-ui-1.8.5.custom.css
|
119
|
+
- lib/logstash/web/public/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
|
120
|
+
- lib/logstash/web/public/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
|
121
|
+
- lib/logstash/web/public/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
|
122
|
+
- lib/logstash/web/public/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
|
123
|
+
- lib/logstash/web/public/css/smoothness/images/ui-icons_cd0a0a_256x240.png
|
124
|
+
- lib/logstash/web/public/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
|
125
|
+
- lib/logstash/web/public/css/smoothness/images/ui-icons_888888_256x240.png
|
126
|
+
- lib/logstash/web/public/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png
|
127
|
+
- lib/logstash/web/public/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
|
128
|
+
- lib/logstash/web/public/css/smoothness/images/ui-icons_454545_256x240.png
|
129
|
+
- lib/logstash/web/public/css/smoothness/images/ui-icons_2e83ff_256x240.png
|
130
|
+
- lib/logstash/web/public/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
|
131
|
+
- lib/logstash/web/public/css/smoothness/images/ui-icons_222222_256x240.png
|
132
|
+
- lib/logstash/web/public/media/construction.gif
|
133
|
+
- lib/logstash/web/public/media/throbber.gif
|
134
|
+
- lib/logstash/web/public/media/truckconstruction.gif
|
135
|
+
- lib/logstash/web/public/ws/index.html
|
136
|
+
- lib/logstash/web/public/js/flot/jquery.flot.navigate.js
|
137
|
+
- lib/logstash/web/public/js/flot/jquery.flot.image.js
|
138
|
+
- lib/logstash/web/public/js/flot/jquery.flot.stack.js
|
139
|
+
- lib/logstash/web/public/js/flot/jquery.flot.navigate.min.js
|
140
|
+
- lib/logstash/web/public/js/flot/jquery.flot.selection.min.js
|
141
|
+
- lib/logstash/web/public/js/flot/FAQ.txt
|
142
|
+
- lib/logstash/web/public/js/flot/README.txt
|
143
|
+
- lib/logstash/web/public/js/flot/PLUGINS.txt
|
144
|
+
- lib/logstash/web/public/js/flot/NEWS.txt
|
145
|
+
- lib/logstash/web/public/js/flot/jquery.flot.js
|
146
|
+
- lib/logstash/web/public/js/flot/jquery.flot.stack.min.js
|
147
|
+
- lib/logstash/web/public/js/flot/Makefile
|
148
|
+
- lib/logstash/web/public/js/flot/examples/navigate.html
|
149
|
+
- lib/logstash/web/public/js/flot/examples/hs-2004-27-a-large_web.jpg
|
150
|
+
- lib/logstash/web/public/js/flot/examples/dual-axis.html
|
151
|
+
- lib/logstash/web/public/js/flot/examples/arrow-down.gif
|
152
|
+
- lib/logstash/web/public/js/flot/examples/basic.html
|
153
|
+
- lib/logstash/web/public/js/flot/examples/thresholding.html
|
154
|
+
- lib/logstash/web/public/js/flot/examples/data-eu-gdp-growth-3.json
|
155
|
+
- lib/logstash/web/public/js/flot/examples/data-eu-gdp-growth.json
|
156
|
+
- lib/logstash/web/public/js/flot/examples/turning-series.html
|
157
|
+
- lib/logstash/web/public/js/flot/examples/interacting.html
|
158
|
+
- lib/logstash/web/public/js/flot/examples/data-eu-gdp-growth-4.json
|
159
|
+
- lib/logstash/web/public/js/flot/examples/graph-types.html
|
160
|
+
- lib/logstash/web/public/js/flot/examples/index.html
|
161
|
+
- lib/logstash/web/public/js/flot/examples/image.html
|
162
|
+
- lib/logstash/web/public/js/flot/examples/visitors.html
|
163
|
+
- lib/logstash/web/public/js/flot/examples/stacking.html
|
164
|
+
- lib/logstash/web/public/js/flot/examples/ajax.html
|
165
|
+
- lib/logstash/web/public/js/flot/examples/arrow-right.gif
|
166
|
+
- lib/logstash/web/public/js/flot/examples/annotating.html
|
167
|
+
- lib/logstash/web/public/js/flot/examples/layout.css
|
168
|
+
- lib/logstash/web/public/js/flot/examples/arrow-left.gif
|
169
|
+
- lib/logstash/web/public/js/flot/examples/setting-options.html
|
170
|
+
- lib/logstash/web/public/js/flot/examples/tracking.html
|
171
|
+
- lib/logstash/web/public/js/flot/examples/data-eu-gdp-growth-2.json
|
172
|
+
- lib/logstash/web/public/js/flot/examples/arrow-up.gif
|
173
|
+
- lib/logstash/web/public/js/flot/examples/zooming.html
|
174
|
+
- lib/logstash/web/public/js/flot/examples/data-eu-gdp-growth-5.json
|
175
|
+
- lib/logstash/web/public/js/flot/examples/data-japan-gdp-growth.json
|
176
|
+
- lib/logstash/web/public/js/flot/examples/time.html
|
177
|
+
- lib/logstash/web/public/js/flot/examples/selection.html
|
178
|
+
- lib/logstash/web/public/js/flot/examples/data-usa-gdp-growth.json
|
179
|
+
- lib/logstash/web/public/js/flot/examples/data-eu-gdp-growth-1.json
|
180
|
+
- lib/logstash/web/public/js/flot/jquery.colorhelpers.min.js
|
181
|
+
- lib/logstash/web/public/js/flot/excanvas.js
|
182
|
+
- lib/logstash/web/public/js/flot/jquery.js
|
183
|
+
- lib/logstash/web/public/js/flot/jquery.flot.crosshair.min.js
|
184
|
+
- lib/logstash/web/public/js/flot/jquery.min.js
|
185
|
+
- lib/logstash/web/public/js/flot/API.txt
|
186
|
+
- lib/logstash/web/public/js/flot/jquery.flot.threshold.js
|
187
|
+
- lib/logstash/web/public/js/flot/jquery.colorhelpers.js
|
188
|
+
- lib/logstash/web/public/js/flot/jquery.flot.selection.js
|
189
|
+
- lib/logstash/web/public/js/flot/excanvas.min.js
|
190
|
+
- lib/logstash/web/public/js/flot/jquery.flot.image.min.js
|
191
|
+
- lib/logstash/web/public/js/flot/jquery.flot.threshold.min.js
|
192
|
+
- lib/logstash/web/public/js/flot/LICENSE.txt
|
193
|
+
- lib/logstash/web/public/js/flot/jquery.flot.crosshair.js
|
194
|
+
- lib/logstash/web/public/js/flot/jquery.flot.min.js
|
195
|
+
- lib/logstash/web/public/js/logstash.js
|
196
|
+
- lib/logstash/web/public/js/jquery.livequery.js
|
197
|
+
- lib/logstash/web/public/js/jquery-hashchange-1.0.0.js
|
198
|
+
- lib/logstash/web/public/js/jquery.tmpl.min.js
|
199
|
+
- lib/logstash/stomp/handler.rb
|
200
|
+
- lib/logstash/agent.rb
|
201
|
+
- lib/logstash/outputs.rb
|
202
|
+
- lib/logstash/time.rb
|
203
|
+
- lib/logstash/inputs/tcp.rb
|
204
|
+
- lib/logstash/inputs/syslog.rb
|
205
|
+
- lib/logstash/inputs/file.rb
|
206
|
+
- lib/logstash/inputs/beanstalk.rb
|
207
|
+
- lib/logstash/inputs/stdin.rb
|
208
|
+
- lib/logstash/inputs/twitter.rb
|
209
|
+
- lib/logstash/inputs/amqp.rb
|
210
|
+
- lib/logstash/inputs/base.rb
|
211
|
+
- lib/logstash/inputs/stomp.rb
|
212
|
+
- lib/logstash/inputs/internal.rb
|
213
|
+
- lib/logstash/search/facetresult.rb
|
214
|
+
- lib/logstash/search/query.rb
|
215
|
+
- lib/logstash/search/twitter.rb
|
216
|
+
- lib/logstash/search/base.rb
|
217
|
+
- lib/logstash/search/elasticsearch.rb
|
218
|
+
- lib/logstash/search/facetresult/histogram.rb
|
219
|
+
- lib/logstash/search/facetresult/entry.rb
|
220
|
+
- lib/logstash/search/result.rb
|
221
|
+
- lib/logstash/inputs.rb
|
222
|
+
- lib/logstash/filters/grok.rb
|
223
|
+
- lib/logstash/filters/grokdiscovery.rb
|
224
|
+
- lib/logstash/filters/field.rb
|
225
|
+
- lib/logstash/filters/multiline.rb
|
226
|
+
- lib/logstash/filters/grep.rb
|
227
|
+
- lib/logstash/filters/date.rb
|
228
|
+
- lib/logstash/filters/base.rb
|
229
|
+
- lib/logstash/filters.rb
|
230
|
+
- lib/logstash/namespace.rb
|
231
|
+
- lib/logstash/event.rb
|
232
|
+
- examples/test.rb
|
233
|
+
- examples/sample-agent-in-ruby.rb
|
234
|
+
- etc/logstash-mongodb-storage.yaml
|
235
|
+
- etc/logstash-shipper.yaml
|
236
|
+
- etc/logstash-stomp.yaml
|
237
|
+
- etc/logstash-nagios.yaml
|
238
|
+
- etc/logstash-standalone.yaml
|
239
|
+
- etc/logstash-parser.yaml
|
240
|
+
- etc/init/logstash
|
241
|
+
- etc/prod.yaml
|
242
|
+
- etc/tograylog.yaml
|
243
|
+
- etc/logstash-grep.yaml
|
244
|
+
- etc/agent.conf
|
245
|
+
- etc/logstash-reader.yaml
|
246
|
+
- etc/redhat/logstash.sysconfig
|
247
|
+
- etc/redhat/logstash-agent.sysconfig
|
248
|
+
- etc/redhat/logstash-agent
|
249
|
+
- etc/redhat/logstash
|
250
|
+
- etc/redhat/logstash.spec
|
251
|
+
- etc/logstash-stomp-input.yaml
|
252
|
+
- etc/logstash-elasticsearch-rabbitmq-river.yaml
|
253
|
+
- patterns/ruby
|
254
|
+
- patterns/nagios
|
255
|
+
- patterns/java
|
256
|
+
- patterns/linux-syslog
|
257
|
+
- patterns/firewalls
|
258
|
+
- patterns/grok-patterns
|
259
|
+
- patterns/haproxy
|
260
|
+
- bin/logstash
|
261
|
+
- bin/logstash-web
|
262
|
+
- bin/logstash-test
|
246
263
|
has_rdoc: true
|
247
264
|
homepage: http://code.google.com/p/logstash/
|
248
265
|
licenses:
|
249
|
-
|
266
|
+
- Apache License (2.0)
|
250
267
|
post_install_message:
|
251
268
|
rdoc_options: []
|
252
269
|
|
253
270
|
require_paths:
|
254
|
-
|
255
|
-
|
271
|
+
- lib
|
272
|
+
- lib
|
256
273
|
required_ruby_version: !ruby/object:Gem::Requirement
|
257
274
|
none: false
|
258
275
|
requirements:
|
259
|
-
|
260
|
-
|
261
|
-
|
276
|
+
- - ">="
|
277
|
+
- !ruby/object:Gem::Version
|
278
|
+
hash: 3
|
279
|
+
segments:
|
280
|
+
- 0
|
281
|
+
version: "0"
|
262
282
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
263
283
|
none: false
|
264
284
|
requirements:
|
265
|
-
|
266
|
-
|
267
|
-
|
285
|
+
- - ">="
|
286
|
+
- !ruby/object:Gem::Version
|
287
|
+
hash: 3
|
288
|
+
segments:
|
289
|
+
- 0
|
290
|
+
version: "0"
|
268
291
|
requirements: []
|
269
292
|
|
270
293
|
rubyforge_project:
|
271
|
-
rubygems_version: 1.
|
294
|
+
rubygems_version: 1.3.7
|
272
295
|
signing_key:
|
273
296
|
specification_version: 3
|
274
297
|
summary: logstash - log and event management (lite install, no dependencies)
|