- Add base for unified invocation binary

This commit is contained in:
Jordan Sissel 2010-10-17 07:13:38 +00:00
parent 7a6808418f
commit d9c8381754

17
bin/logstash Normal file
View file

@ -0,0 +1,17 @@
#!/usr/bin/env ruby
require "rubygems"
require "eventmachine"
require "lib/components/agent"
config = {
"logs" => [
"/var/log/messages",
],
}
agent = LogStash::Components::Agent.new(config)
EventMachine.run do
agent.register
end