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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
# 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, **kwargs)
      req = nil
      return perform_without_apm(*args, **kwargs) unless StackifyRubyAPM.current_transaction

      begin
        # Data configuration
        @_apm_http_verb ||= :GET
        method = @_apm_http_verb
        uri = args[0].strip
        name = "#{method} #{uri}"
        type = "ext.Curb.Easy.#{method}"

        # Builds span context
        #
        ctx = Span::Context.new(
          CATEGORY: 'Web External',
          SUBCATEGORY: 'Execute',
          URL: uri,
          STATUS: '',
          METHOD: method
        )
      rescue Exception => e
        StackifyRubyAPM.agent.error "[CurbEasySpy] Error: creating span context."
        StackifyRubyAPM.agent.error "[CurbEasySpy] #{e.inspect}"
        return perform_without_apm(*args, **kwargs)
      end

      # Creates new span from HTTP result
      StackifyRubyAPM.span name, type, context: ctx do
        # Submits HTTP request
        #
        res = perform_without_apm(*args, **kwargs)

        begin
          status_code = res.status.sub(/^0-9/, '').to_i
          ctx.update_status(status_code)

          if StackifyRubyAPM.agent.config.prefix_enabled
            ctx.update_request_body("")
            ctx.update_request_headers(res.headers || Hash.new)
            ctx.update_response_body(res.body || "")
            ctx.update_response_headers(res.proxy_headers || Hash.new)
          end
        rescue Exception => e
          StackifyRubyAPM.agent.error '[CurbEasySpy] Error: getting status code or updating request/response context.'
          StackifyRubyAPM.agent.error "[CurbEasySpy] #{e.inspect}"
        end
        res
      end
    end

    def self.http_post(*args, **kwargs)
      req = nil
      return http_post_without_apm(*args, **kwargs) unless StackifyRubyAPM.current_transaction

      begin
        # Data configuration
        #
        @_apm_http_verb = :POST
        method = @_apm_http_verb
        uri = args[0].strip
        name = "#{method} #{uri}"
        type = "ext.Curb.Easy.#{method}"

        ctx = Span::Context.new(
          CATEGORY: 'Web External',
          SUBCATEGORY: 'Execute',
          URL: uri,
          STATUS: '',
          METHOD: method
        )
      rescue Exception => e
        StackifyRubyAPM.agent.error "[CurbEasySpy] Error: creating span context."
        StackifyRubyAPM.agent.error "[CurbEasySpy] #{e.inspect}"
        return http_post_without_apm(*args, **kwargs)
      end

      # Creates new span from HTTP result
      StackifyRubyAPM.span name, type, context: ctx do
        res = http_post_without_apm(*args, **kwargs)

        begin
          status_code = res.status.sub(/^0-9/, '').to_i
          ctx.update_status(status_code)

          if StackifyRubyAPM.agent.config.prefix_enabled
            if args.length == 2
              request_body = args[1].to_s
            elsif args.length > 2
              request_body = {}
              contents = args[1..-1]
              contents.each do |data|
                request_body[data.name] = data.content
              end
              request_body = request_body.to_json
            else
              request_body = ""
            end

            ctx.update_request_body(request_body)
            ctx.update_request_headers(res.headers || Hash.new)
            ctx.update_response_body(res.body || "")
            ctx.update_response_headers(res.proxy_headers || Hash.new)
          end
        rescue Exception => e
          StackifyRubyAPM.agent.error '[CurbEasySpy] Error: getting status code or updating request/response context.'
          StackifyRubyAPM.agent.error "[CurbEasySpy] #{e.inspect}"
        end

        res
      end
    end

    def self.http_put(url, data)
      req = nil
      return http_put_without_apm(url, data) unless StackifyRubyAPM.current_transaction

      begin
        # Data configuration
        #
        @_apm_http_verb = :PUT
        method = @_apm_http_verb
        uri = url.strip
        name = "#{method} #{uri}"
        type = "ext.Curb.Easy.#{method}"

        ctx = Span::Context.new(
          CATEGORY: 'Web External',
          SUBCATEGORY: 'Execute',
          URL: uri,
          STATUS: '',
          METHOD: method
        )
      rescue Exception => e
        StackifyRubyAPM.agent.error "[CurbEasySpy] Error: creating span context."
        StackifyRubyAPM.agent.error "[CurbEasySpy] #{e.inspect}"
        return http_put_without_apm(url, data)
      end

      # Creates new span from HTTP result
      StackifyRubyAPM.span name, type, context: ctx do
        res = http_put_without_apm(url, data)

        begin
          status_code = res.status.sub(/^0-9/, '').to_i
          ctx.update_status(status_code)

          if StackifyRubyAPM.agent.config.prefix_enabled
            ctx.update_request_body(data)
            ctx.update_request_headers(res.headers || Hash.new)
            ctx.update_response_body(res.body || "")
            ctx.update_response_headers(res.proxy_headers || Hash.new)
          end
        rescue Exception => e
          StackifyRubyAPM.agent.error '[CurbEasySpy] Error: getting status code or updating request/response context.'
          StackifyRubyAPM.agent.error "[CurbEasySpy] #{e.inspect}"
        end

        res
      end
    end

    def self.http_get(*args, **kwargs)
      req = nil
      return http_get_without_apm(*args, **kwargs) unless StackifyRubyAPM.current_transaction

      begin
        # Data configuration
        #
        @_apm_http_verb = :GET
        method = @_apm_http_verb
        uri = args[0].strip
        name = "#{method} #{uri}"
        type = "ext.Curb.Easy.#{method}"

        ctx = Span::Context.new(
          CATEGORY: 'Web External',
          SUBCATEGORY: 'Execute',
          URL: uri,
          STATUS: '',
          METHOD: method
        )
      rescue Exception => e
        StackifyRubyAPM.agent.error "[CurbEasySpy] Error: creating span context."
        StackifyRubyAPM.agent.error "[CurbEasySpy] #{e.inspect}"
        return http_get_without_apm(*args, **kwargs)
      end

      # Creates new span from HTTP result
      StackifyRubyAPM.span name, type, context: ctx do
        res = http_get_without_apm(*args, **kwargs)

        begin
          status_code = res.status.sub(/^0-9/, '').to_i
          ctx.update_status(status_code)

          if StackifyRubyAPM.agent.config.prefix_enabled
            ctx.update_request_body("")
            ctx.update_request_headers(res.headers || Hash.new)
            ctx.update_response_body(res.body || "")
            ctx.update_response_headers(res.proxy_headers || Hash.new)
          end
        rescue Exception => e
          StackifyRubyAPM.agent.error '[CurbEasySpy] Error: getting status code or updating request/response context.'
          StackifyRubyAPM.agent.error "[CurbEasySpy] #{e.inspect}"
        end

        res
      end
    end

    def self.http_delete(*args, **kwargs)
      req = nil
      return http_delete_without_apm(*args, **kwargs) unless StackifyRubyAPM.current_transaction

      begin
        # Data configuration
        #
        @_apm_http_verb = :DELETE
        method = @_apm_http_verb
        uri = args[0].strip
        name = "#{method} #{uri}"
        type = "ext.Curb.Easy.#{method}"

        ctx = Span::Context.new(
          CATEGORY: 'Web External',
          SUBCATEGORY: 'Execute',
          URL: uri,
          STATUS: '',
          METHOD: method
        )
      rescue Exception => e
        StackifyRubyAPM.agent.error "[CurbEasySpy] Error: creating span context."
        StackifyRubyAPM.agent.error "[CurbEasySpy] #{e.inspect}"
        return http_delete_without_apm(*args, **kwargs)
      end

      # Creates new span from HTTP result
      StackifyRubyAPM.span name, type, context: ctx do
        res = http_delete_without_apm(*args, **kwargs)

        begin
          status_code = res.status.sub(/^0-9/, '').to_i
          ctx.update_status(status_code)

          if StackifyRubyAPM.agent.config.prefix_enabled
            ctx.update_request_body("")
            ctx.update_request_headers(res.headers || Hash.new)
            ctx.update_response_body(res.body || "")
            ctx.update_response_headers(res.proxy_headers || Hash.new)
          end
        rescue Exception => e
          StackifyRubyAPM.agent.error '[CurbEasySpy] Error: getting status code or updating request/response context.'
          StackifyRubyAPM.agent.error "[CurbEasySpy] #{e.inspect}"
        end

        res
      end
    end
  end
end