Sha256: f5d2b14e7bf358d0320d826bf148ca51e4528efd76b51d9c1c9586f57d21cd19

Contents?: true

Size: 1.01 KB

Versions: 62

Compression:

Stored size: 1.01 KB

Contents

# :include: ../rdoc/outputter
#
# == Other Info
#
# Version:: $Id$
# Author:: Leon Torres <leon@ugcs.caltech.edu>

require "log4r/outputter/outputter"
require 'log4r/staticlogger'
require "socket"

module Log4r

  class UDPOutputter < Outputter
    attr_reader :host, :port
    attr_accessor :udpsock
     
    def initialize(_name, hash={})
      super(_name, hash)
      @host = (hash[:hostname] or hash["hostname"])
      @port = (hash[:port] or hash["port"])

      begin 
	Logger.log_internal {
	  "UDPOutputter will send to #{@host}:#{@port}"
	}
	@udpsock = UDPSocket.new
	@udpsock.connect( @host, @port )
      rescue Exception => e
	Logger.log_internal(ERROR) {
	  "UDPOutputter failed to create UDP socket: #{e}"
	}
	Logger.log_internal {e}
	self.level = OFF
	raise e
      end
    end

    #######
    private
    #######

    def write(data)
      @udpsock.send(data, 0)
    rescue Exception => e
      Logger.log_internal(ERROR) {
	"UDPOutputter failed to send data to #{@host}:#{@port}, #{e}"
      }
    end
    
  end

end

Version data entries

62 entries across 54 versions & 13 rubygems

Version Path
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
vagrant-unbundled-1.8.5.2 vendor/bundle/ruby/2.3.0/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
vagrant-unbundled-1.8.5.1 vendor/bundle/ruby/2.3.0/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
vagrant-unbundled-1.8.4.2 vendor/bundle/ruby/2.3.0/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
vagrant-unbundled-1.8.4.1 vendor/bundle/ruby/2.3.0/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
vagrant-unbundled-1.8.1.1 vendor/bundle/ruby/2.3.0/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
log4rails-1.1.11 lib/log4r/outputter/udpoutputter.rb
vagrant-tiktalik-0.0.3 vendor/bundle/ruby/2.0.0/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
mtn_log4r-1.1.12 lib/log4r/outputter/udpoutputter.rb
mtn_log4r-1.1.11 lib/log4r/outputter/udpoutputter.rb
vinted-log4r-1.1.11 lib/log4r/outputter/udpoutputter.rb
tnargav-1.3.3 vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
vagrant-shell-0.2.9 demo/templates/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
tnargav-1.2.3 vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
vagrant-shell-0.2.8 demo/templates/vendor/bundle/ruby/1.9.1/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
vagrant-shell-0.2.6 vendor/bundle/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
vagrant-shell-0.2.5 vendor/bundle/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb
vagrant-actionio-0.0.9 vendor/bundle/gems/log4r-1.1.10/lib/log4r/outputter/udpoutputter.rb