lib/skylight/formatters/http.rb in skylight-5.0.0.beta2 vs lib/skylight/formatters/http.rb in skylight-5.0.0.beta3

- old
+ new

@@ -10,10 +10,11 @@ # @param [String] path Request path # @param [String] query Request query string # @return [Hash] a hash containing `:category`, `:title`, and `:annotations` def self.build_opts(method, _scheme, host, _port, _path, _query) { category: "api.http.#{method.downcase}", - title: "#{method.upcase} #{host}" } + title: "#{method.upcase} #{host}", + internal: true } end end end end