require "instana/base" require "instana/config" require "instana/agent" require "instana/tracer" require "instana/tracing/processor" ::Instana.setup require "instana/collectors" require "instana/instrumentation" ::Instana.agent.setup # The Instana agent is now setup. The only remaining # task for a complete boot is to call # `Instana.agent.start` in the thread of your choice. # This can be in a simple `Thread.new` block or # any other thread system you may use (e.g. actor # threads). # # Note that `start` should only be called once per process. # # Thread.new do # ::Instana.agent.start # end