class Appsignal::EventFormatter::Faraday::RequestFormatter

def format(payload)

def format(payload)
  http_method = payload[:method].to_s.upcase
  uri = payload[:url]
  [
    "#{http_method} #{uri.scheme}://#{uri.host}",
    "#{http_method} #{uri.scheme}://#{uri.host}#{uri.path}"
  ]
end