Sha256: 38c80c6d968fb3663ef92efc46a0b99256622f9ef35ff6a1b71f4895e5ee4258
Contents?: true
Size: 1.34 KB
Versions: 4
Compression:
Stored size: 1.34 KB
Contents
require 'miu/plugin' module Miu module Plugins class Null include Miu::Plugin DEFAULT_PORT = Miu.default_port + 10 class Handler def log(tag, time, record) end end def initialize(options) require 'msgpack/rpc' @server = MessagePack::RPC::Server.new @server.listen options[:host], options[:port], Handler.new [:TERM, :INT].each do |sig| Signal.trap(sig) { @server.stop } end @server.run end register :null, :desc => 'Null plugin' do desc 'start', 'start null' option :bind, :type => :string, :default => '0.0.0.0', :desc => 'bind address', :aliases => '-a' option :port, :type => :numeric, :default => DEFAULT_PORT, :desc => 'listen port', :aliases => '-p' def start Null.new options end desc 'init', 'init null config' def init append_to_file Miu.default_god_config, <<-CONF God.watch do |w| w.dir = Miu.root w.log = Miu.root.join('log/null.log') w.name = 'null' w.start = 'bundle exec miu null start' end CONF append_to_file Miu.default_fluent_config, <<-CONF # miu null output plugin <match miu.output.null> type msgpack_rpc host localhost port #{DEFAULT_PORT} </match> CONF end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
miu-0.1.0 | lib/miu/plugins/null.rb |
miu-0.0.6 | lib/miu/plugins/null.rb |
miu-0.0.5 | lib/miu/plugins/null.rb |
miu-0.0.4 | lib/miu/plugins/null.rb |