mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
added dependencies to ffi-rzmq for 0mq support and statsd-client for StatsD output
This commit is contained in:
parent
3467c8868a
commit
e0ece67c33
3 changed files with 12 additions and 0 deletions
3
Gemfile
3
Gemfile
|
@ -30,6 +30,9 @@ gem "gmetric", "~> 0.1.3" # outputs/ganglia, # License: MIT
|
|||
gem "xmpp4r", "~> 0.5" # outputs/xmpp, # License: As-Is
|
||||
gem "gelfd", "~> 0.1.0" #inputs/gelf, # License: Apache 2.0
|
||||
|
||||
gem "ffi-rzmq"
|
||||
gem "statsd-client"
|
||||
|
||||
# For testing/dev
|
||||
group :development do
|
||||
gem "rake"
|
||||
|
|
|
@ -5,6 +5,7 @@ GEM
|
|||
bouncy-castle-java (1.5.0146.1)
|
||||
bson (1.4.0-java)
|
||||
bunny (0.7.6)
|
||||
ffi-rzmq (0.8.2)
|
||||
filewatch (0.3.0)
|
||||
gelf (1.1.3)
|
||||
json
|
||||
|
@ -28,6 +29,7 @@ GEM
|
|||
sinatra (1.2.6)
|
||||
rack (~> 1.1)
|
||||
tilt (>= 1.2.2, < 2.0)
|
||||
statsd-client (0.0.5)
|
||||
statsd-ruby (0.3.0)
|
||||
stomp (1.1.9)
|
||||
tilt (1.3.3)
|
||||
|
@ -40,6 +42,7 @@ PLATFORMS
|
|||
DEPENDENCIES
|
||||
awesome_print
|
||||
bunny
|
||||
ffi-rzmq
|
||||
filewatch (~> 0.3.0)
|
||||
gelf
|
||||
gelfd (~> 0.1.0)
|
||||
|
@ -57,6 +60,7 @@ DEPENDENCIES
|
|||
redis
|
||||
sass
|
||||
sinatra
|
||||
statsd-client
|
||||
statsd-ruby (~> 0.3.0)
|
||||
stomp
|
||||
uuidtools
|
||||
|
|
|
@ -55,6 +55,11 @@ Gem::Specification.new do |spec|
|
|||
spec.add_dependency("bunny")
|
||||
spec.add_dependency("uuidtools")
|
||||
|
||||
# We need zeromq for input
|
||||
spec.add_dependency("ffi-rzmq")
|
||||
# We need a statsd client
|
||||
spec.add_dependency("statsd-client")
|
||||
|
||||
# For beanstalk://
|
||||
#spec.add_dependency("em-jack")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue