Class: StackifyRubyAPM::Spies::CurbEasySpy Private

Inherits:
Object
  • Object
show all
Defined in:
lib/stackify_apm/spies/curb/easy.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#_apm_http_verbObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



10
11
12
# File 'lib/stackify_apm/spies/curb/easy.rb', line 10

def _apm_http_verb
  @_apm_http_verb
end

Instance Method Details

#installObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# File 'lib/stackify_apm/spies/curb/easy.rb', line 11

def install
  Curl::Easy.class_eval do
    singleton_class.send(:alias_method, :perform_without_apm, :perform)
    singleton_class.send(:alias_method, :http_head_without_apm, :http_head)
    singleton_class.send(:alias_method, :http_post_without_apm, :http_post)
    singleton_class.send(:alias_method, :http_put_without_apm, :http_put)
    singleton_class.send(:alias_method, :http_get_without_apm, :http_get)
    singleton_class.send(:alias_method, :http_delete_without_apm, :http_delete)
    def self.perform(*args)
      req = nil
      return perform_without_apm(*args) unless StackifyRubyAPM.current_transaction
      # Data configuration
      @_apm_http_verb ||= :GET
      method = @_apm_http_verb
      uri = args[0].strip
      name = "#{method} #{uri}"
      type = "ext.Curb.Easy.#{method}"
      # Submits HTTP request
      #
      req = perform_without_apm(*args)
      # Builds span context
      #
      status_code = req.status.gsub(/^0-9/, '').to_i
      ctx = Span::Context.new(
        CATEGORY: 'Web External',
        SUBCATEGORY: 'Execute',
        URL: uri,
        STATUS: status_code,
        METHOD: method
      )
      # Creates new span from HTTP result
      StackifyRubyAPM.span name, type, context: ctx do
        req
      end
    end

    def self.http_post(*args)
      req = nil
      return http_post_without_apm(*args) unless StackifyRubyAPM.current_transaction
      # Data configuration
      #
      @_apm_http_verb = :POST
      method = @_apm_http_verb
      uri = args[0].strip
      name = "#{method} #{uri}"
      type = "ext.Curb.Easy.#{method}"
      req = http_post_without_apm(*args)
      status_code = req.status.gsub(/^0-9/, '').to_i

      ctx = Span::Context.new(
        CATEGORY: 'Web External',
        SUBCATEGORY: 'Execute',
        URL: uri,
        STATUS: status_code,
        METHOD: method
      )
      # Creates new span from HTTP result
      StackifyRubyAPM.span name, type, context: ctx do
        req
      end
    end

    def self.http_put(url, data)
      req = nil
      return http_put_without_apm(url, data) unless StackifyRubyAPM.current_transaction
      # Data configuration
      #
      @_apm_http_verb = :PUT
      method = @_apm_http_verb
      uri = url.strip
      name = "#{method} #{uri}"
      type = "ext.Curb.Easy.#{method}"
      req = http_put_without_apm(url, data)
      status_code = req.status.gsub(/^0-9/, '').to_i

      ctx = Span::Context.new(
        CATEGORY: 'Web External',
        SUBCATEGORY: 'Execute',
        URL: uri,
        STATUS: status_code,
        METHOD: method
      )
      # Creates new span from HTTP result
      StackifyRubyAPM.span name, type, context: ctx do
        req
      end
    end

    def self.http_get(*args)
      req = nil
      return http_get_without_apm(*args) unless StackifyRubyAPM.current_transaction
      # Data configuration
      #
      @_apm_http_verb = :GET
      method = @_apm_http_verb
      uri = args[0].strip
      name = "#{method} #{uri}"
      type = "ext.Curb.Easy.#{method}"
      req = http_get_without_apm(*args)
      status_code = req.status.gsub(/^0-9/, '').to_i

      ctx = Span::Context.new(
        CATEGORY: 'Web External',
        SUBCATEGORY: 'Execute',
        URL: uri,
        STATUS: status_code,
        METHOD: method
      )
      # Creates new span from HTTP result
      StackifyRubyAPM.span name, type, context: ctx do
        req
      end
    end

    def self.http_delete(*args)
      req = nil
      return http_delete_without_apm(*args) unless StackifyRubyAPM.current_transaction
      # Data configuration
      #
      @_apm_http_verb = :DELETE
      method = @_apm_http_verb
      uri = args[0].strip
      name = "#{method} #{uri}"
      type = "ext.Curb.Easy.#{method}"
      req = http_delete_without_apm(*args)
      status_code = req.status.gsub(/^0-9/, '').to_i

      ctx = Span::Context.new(
        CATEGORY: 'Web External',
        SUBCATEGORY: 'Execute',
        URL: uri,
        STATUS: status_code,
        METHOD: method
      )
      # Creates new span from HTTP result
      StackifyRubyAPM.span name, type, context: ctx do
        req
      end
    end
  end
end