class Fluent::Plugin::AzureEventHubsOutputBuffered

Constants

DEFAULT_BUFFER_TYPE

Public Instance Methods

configure(conf) click to toggle source
Calls superclass method
# File lib/fluent/plugin/out_azureeventhubs_buffered.rb, line 28
def configure(conf)
  compat_parameters_convert(conf, :buffer, :inject)
  super
  case @type
  when 'amqps'
    raise NotImplementedError
  else
    require_relative 'azureeventhubs/http'
    @sender = AzureEventHubsHttpSender.new(@connection_string, @hub_name, @expiry_interval,@proxy_addr,@proxy_port,@open_timeout,@read_timeout)
  end
  raise Fluent::ConfigError, "'tag' in chunk_keys is required." if not @chunk_key_tag
end
format(tag, time, record) click to toggle source
# File lib/fluent/plugin/out_azureeventhubs_buffered.rb, line 41
def format(tag, time, record)
  record = inject_values_to_record(tag, time, record)
  [tag, time, record].to_msgpack
end
formatted_to_msgpack_binary?() click to toggle source
# File lib/fluent/plugin/out_azureeventhubs_buffered.rb, line 46
def formatted_to_msgpack_binary?
  true
end
write(chunk) click to toggle source
# File lib/fluent/plugin/out_azureeventhubs_buffered.rb, line 50
def write(chunk)
  chunk.msgpack_each { |tag, time, record|
    p record.to_s
    if @include_tag
      record['tag'] = tag
    end
    if @include_time
      record[@tag_time_name] = time
    end
    @sender.send_w_properties(record, @message_properties)
  }
end