Sha256: cbb603d3cf25c93187f6686456467848dab55a11967779efaf9b5eeb5170c6b1
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 KB
Contents
require 'socket' require 'syslog_protocol' module RemoteSyslogLoggerCustom class Sender def initialize(remote_hostname, remote_port, options = {}) @remote_hostname = remote_hostname @remote_port = remote_port @whinyerrors = options[:whinyerrors] @packet = SyslogProtocol::Packet.new local_hostname = options[:local_hostname] || (Socket.gethostname rescue `hostname`.chomp) local_hostname = 'localhost' if local_hostname.nil? || local_hostname.empty? @packet.hostname = local_hostname @packet.facility = options[:facility] || 'user' @packet.severity = options[:severity] || 'notice' @packet.tag = options[:program] || "#{File.basename($0)}[#{$$}]" @socket = nil end def transmit(message) message.split(/\r?\n/).each do |line| begin next if line =~ /^\s*$/ packet = @packet.dup packet.content = line send_msg(packet.assemble) rescue $stderr.puts "#{self.class} error: #{$!.class}: #{$!}\nOriginal message: #{line}" raise if @whinyerrors end end end # Make this act a little bit like an `IO` object alias_method :write, :transmit def close @socket.close end private def send_msg(payload) raise NotImplementedError, "please override" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
remote_syslog_logger_custom-1.0.3 | lib/remote_syslog_logger_custom/sender.rb |