logstash/bin/logstashd.rb
Jordan Sissel d6cf0f34fb - ruby-prof showed that hashbind was taking the most time, so convert away from it.
- make it easy to try using ruby  marshal instead of json for wire format, for comparing speed.
- Set Thread::abort_on_exception so when threads die due to simple syntax or
  name errors they don't die silently.
- Add basic search client
2009-09-08 06:05:09 +00:00

10 lines
177 B
Ruby

#!/usr/bin/env ruby
#
require "rubygems"
require "lib/net/servers/indexer"
Thread::abort_on_exception = true
s = LogStash::Net::Servers::Indexer.new(host="snack.home")
s.run