Class: Fluent::Logger::FluentLogger

Inherits:
LoggerBase show all
Extended by:
Finalizable
Defined in:
lib/fluent/logger/fluent_logger.rb,
lib/fluent/logger/fluent_logger/cui.rb

Defined Under Namespace

Modules: CUI, Finalizable

Constant Summary collapse

BUFFER_LIMIT =
8*1024*1024
RECONNECT_WAIT =
0.5
RECONNECT_WAIT_INCR_RATE =
1.5
RECONNECT_WAIT_MAX =
60
RECONNECT_WAIT_MAX_COUNT =
(1..100).inject(RECONNECT_WAIT_MAX / RECONNECT_WAIT) {|r,i|
  break i + 1 if r < RECONNECT_WAIT_INCR_RATE
  r / RECONNECT_WAIT_INCR_RATE
}

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Finalizable

finalizer, new

Methods inherited from LoggerBase

open, #post

Constructor Details

#initialize(tag_prefix, *args) ⇒ FluentLogger

Returns a new instance of FluentLogger.



58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/fluent/logger/fluent_logger.rb', line 58

def initialize(tag_prefix, *args)
  super()

  options = {
    :host => 'localhost',
    :port => 24224
  }

  case args.first
  when String, Symbol
    # backward compatible
    options[:host] = args[0]
    options[:port] = args[1] if args[1]
  when Hash
    options.update args.first
  end

  @tag_prefix = tag_prefix
  @host = options[:host]
  @port = options[:port]

  @mon = Monitor.new
  @pending = nil
  @connect_error_history = []

  @limit = options[:buffer_limit] || BUFFER_LIMIT

  if logger = options[:logger]
    @logger = logger
  else
    @logger = ::Logger.new(STDERR)
    if options[:debug]
      @logger.level = ::Logger::DEBUG
    else
      @logger.level = ::Logger::INFO
    end
  end

  begin
    connect!
  rescue
    @logger.error "Failed to connect fluentd: #{$!}"
    @logger.error "Connection will be retried."
  end
end

Instance Attribute Details

#limitObject

Returns the value of attribute limit.



104
105
106
# File 'lib/fluent/logger/fluent_logger.rb', line 104

def limit
  @limit
end

#loggerObject

Returns the value of attribute logger.



104
105
106
# File 'lib/fluent/logger/fluent_logger.rb', line 104

def logger
  @logger
end

Instance Method Details

#closeObject



112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# File 'lib/fluent/logger/fluent_logger.rb', line 112

def close
  @mon.synchronize {
    if @pending
      begin
        send_data(@pending)
      rescue
        @logger.error("FluentLogger: Can't send logs to #{@host}:#{@port}: #{$!}")
      end
    end
    @con.close if connect?
    @con = nil
    @pending = nil
  }
  self
end

#connect?Boolean

Returns:

  • (Boolean)


128
129
130
# File 'lib/fluent/logger/fluent_logger.rb', line 128

def connect?
  !!@con
end

#finalizeObject



132
133
134
# File 'lib/fluent/logger/fluent_logger.rb', line 132

def finalize
  close
end

#post_with_time(tag, map, time) ⇒ Object



106
107
108
109
110
# File 'lib/fluent/logger/fluent_logger.rb', line 106

def post_with_time(tag, map, time)
  @logger.debug { "event: #{tag} #{map.to_json}" rescue nil }
  tag = "#{@tag_prefix}.#{tag}" if @tag_prefix
  write [tag, time.to_i, map]
end