Class: Zipkin::JsonClient
- Inherits:
-
Object
- Object
- Zipkin::JsonClient
- Defined in:
- lib/zipkin/json_client.rb
Instance Method Summary collapse
-
#initialize(url:, collector:, flush_interval:, logger: Logger.new(STDOUT)) ⇒ JsonClient
constructor
A new instance of JsonClient.
- #start ⇒ Object
- #stop ⇒ Object
Constructor Details
#initialize(url:, collector:, flush_interval:, logger: Logger.new(STDOUT)) ⇒ JsonClient
Returns a new instance of JsonClient.
7 8 9 10 11 12 |
# File 'lib/zipkin/json_client.rb', line 7 def initialize(url:, collector:, flush_interval:, logger: Logger.new(STDOUT)) @collector = collector @flush_interval = flush_interval @spans_uri = URI.parse("#{url}/api/v1/spans") @logger = logger end |
Instance Method Details
#start ⇒ Object
14 15 16 17 18 19 20 21 |
# File 'lib/zipkin/json_client.rb', line 14 def start @thread = Thread.new do loop do emit_batch(@collector.retrieve) sleep @flush_interval end end end |
#stop ⇒ Object
23 24 25 26 |
# File 'lib/zipkin/json_client.rb', line 23 def stop @thread.terminate if @thread emit_batch(@collector.retrieve) end |