Class: Searchkick::LogSubscriber
- Inherits:
-
ActiveSupport::LogSubscriber
- Object
- ActiveSupport::LogSubscriber
- Searchkick::LogSubscriber
- Defined in:
- lib/searchkick/logging.rb
Overview
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.reset_runtime ⇒ Object
28 29 30 31 |
# File 'lib/searchkick/logging.rb', line 28 def self.reset_runtime rt, self.runtime = runtime, 0 rt end |
.runtime ⇒ Object
24 25 26 |
# File 'lib/searchkick/logging.rb', line 24 def self.runtime Thread.current[:searchkick_runtime] ||= 0 end |
.runtime=(value) ⇒ Object
20 21 22 |
# File 'lib/searchkick/logging.rb', line 20 def self.runtime=(value) Thread.current[:searchkick_runtime] = value end |
Instance Method Details
#search(event) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/searchkick/logging.rb', line 33 def search(event) self.class.runtime += event.duration return unless logger.debug? payload = event.payload name = "#{payload[:name]} (#{event.duration.round(1)}ms)" type = payload[:query][:type] index = payload[:query][:index].is_a?(Array) ? payload[:query][:index].join(",") : payload[:query][:index] # no easy way to tell which host the client will use host = Searchkick.client.transport.hosts.first debug " #{color(name, YELLOW, true)} curl #{host[:protocol]}://#{host[:host]}:#{host[:port]}/#{CGI.escape(index)}#{type ? "/#{type.map{|t| CGI.escape(t) }.join(",")}" : ""}/_search?pretty -d '#{payload[:query][:body].to_json}'" end |