class Datadog::Profiling::Transport::HTTP::API::Instance

API instance for profiling

Public Instance Methods

send_profiling_flush(env) click to toggle source
# File lib/ddtrace/profiling/transport/http/api/instance.rb, line 12
def send_profiling_flush(env)
  raise ProfilesNotSupportedError, spec unless spec.is_a?(Spec)

  spec.send_profiling_flush(env) do |request_env|
    call(request_env)
  end
end