This file is indexed.

/usr/lib/ruby/vendor_ruby/faraday/request/instrumentation.rb is in ruby-faraday 0.9.2-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module Faraday
  class Request::Instrumentation < Faraday::Middleware
    class Options < Faraday::Options.new(:name, :instrumenter)
      def name
        self[:name] ||= 'request.faraday'
      end

      def instrumenter
        self[:instrumenter] ||= ActiveSupport::Notifications
      end
    end

    # Public: Instruments requests using Active Support.
    #
    # Measures time spent only for synchronous requests.
    #
    # Examples
    #
    #   ActiveSupport::Notifications.subscribe('request.faraday') do |name, starts, ends, _, env|
    #     url = env[:url]
    #     http_method = env[:method].to_s.upcase
    #     duration = ends - starts
    #     $stderr.puts '[%s] %s %s (%.3f s)' % [url.host, http_method, url.request_uri, duration]
    #   end
    def initialize(app, options = nil)
      super(app)
      @name, @instrumenter = Options.from(options).values_at(:name, :instrumenter)
    end

    def call(env)
      @instrumenter.instrument(@name, env) do
        @app.call(env)
      end
    end
  end
end