Sha256: dbea698ad57554460581cd76a8d27513f39d2399fb6fe8d7c5c046e4824e501c
Contents?: true
Size: 724 Bytes
Versions: 20
Compression:
Stored size: 724 Bytes
Contents
module Skylight module Formatters module HTTP # Build instrumentation options for HTTP queries # # @param [String] method HTTP method, e.g. get, post # @param [String] scheme HTTP scheme, e.g. http, https # @param [String] host Request host, e.g. example.com # @param [String, Integer] port Request port # @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}", internal: true } end end end end
Version data entries
20 entries across 20 versions & 1 rubygems