-
Notifications
You must be signed in to change notification settings - Fork 373
/
endpoint.rb
294 lines (236 loc) · 10.8 KB
/
endpoint.rb
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
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
# frozen_string_literal: true
require_relative '../../../core'
require_relative '../../metadata/ext'
require_relative '../analytics'
require_relative '../rack/ext'
module Datadog
module Tracing
module Contrib
module Grape
# Endpoint module includes a list of subscribers to create
# traces when a Grape endpoint is hit
module Endpoint
KEY_RUN = 'datadog_grape_endpoint_run'
KEY_RENDER = 'datadog_grape_endpoint_render'
class << self
def subscribe
# subscribe when a Grape endpoint is hit
::ActiveSupport::Notifications.subscribe('endpoint_run.grape.start_process') do |*args|
endpoint_start_process(*args)
end
::ActiveSupport::Notifications.subscribe('endpoint_run.grape') do |*args|
endpoint_run(*args)
end
::ActiveSupport::Notifications.subscribe('endpoint_render.grape.start_render') do |*args|
endpoint_start_render(*args)
end
::ActiveSupport::Notifications.subscribe('endpoint_render.grape') do |*args|
endpoint_render(*args)
end
::ActiveSupport::Notifications.subscribe('endpoint_run_filters.grape') do |*args|
endpoint_run_filters(*args)
end
end
def endpoint_start_process(_name, _start, _finish, _id, payload)
return if Thread.current[KEY_RUN]
return unless enabled?
# collect endpoint details
endpoint = payload.fetch(:endpoint)
api_view = api_view(endpoint.options[:for])
request_method = endpoint.options.fetch(:method).first
path = endpoint_expand_path(endpoint)
resource = "#{api_view} #{request_method} #{path}"
# Store the beginning of a trace
span = Tracing.trace(
Ext::SPAN_ENDPOINT_RUN,
service: service_name,
type: Tracing::Metadata::Ext::HTTP::TYPE_INBOUND,
resource: resource
)
trace = Tracing.active_trace
# Set the trace resource
trace.resource = span.resource
span.set_tag(Tracing::Metadata::Ext::TAG_COMPONENT, Ext::TAG_COMPONENT)
span.set_tag(Tracing::Metadata::Ext::TAG_OPERATION, Ext::TAG_OPERATION_ENDPOINT_RUN)
Thread.current[KEY_RUN] = true
rescue StandardError => e
Datadog.logger.error(e.message)
end
def endpoint_run(name, start, finish, id, payload)
return unless Thread.current[KEY_RUN]
Thread.current[KEY_RUN] = false
return unless enabled?
trace = Tracing.active_trace
span = Tracing.active_span
return unless trace && span
begin
# collect endpoint details
endpoint = payload.fetch(:endpoint)
api_view = api_view(endpoint.options[:for])
request_method = endpoint.options.fetch(:method).first
path = endpoint_expand_path(endpoint)
trace.resource = span.resource
# Set analytics sample rate
Contrib::Analytics.set_sample_rate(span, analytics_sample_rate) if analytics_enabled?
# Measure service stats
Contrib::Analytics.set_measured(span)
handle_error_and_status_code(span, endpoint, payload)
# override the current span with this notification values
span.set_tag(Ext::TAG_ROUTE_ENDPOINT, api_view) unless api_view.nil?
span.set_tag(Ext::TAG_ROUTE_PATH, path)
span.set_tag(Ext::TAG_ROUTE_METHOD, request_method)
span.set_tag(Tracing::Metadata::Ext::HTTP::TAG_METHOD, request_method)
span.set_tag(Tracing::Metadata::Ext::HTTP::TAG_URL, path)
ensure
span.start(start)
span.finish(finish)
end
rescue StandardError => e
Datadog.logger.error(e.message)
end
# Status code resolution is tied to the exception handling
def handle_error_and_status_code(span, endpoint, payload)
status = nil
# Handle exceptions and status code
if (exception_object = payload[:exception_object])
# If the exception is not an internal Grape error, we won't have a status code at this point.
status = exception_object.status if exception_object.respond_to?(:status)
handle_error(span, exception_object, status)
else
# Status code is unreliable in `endpoint_run.grape` if there was an exception.
# Only after `Grape::Middleware::Error#run_rescue_handler` that the error status code of a request with a
# Ruby exception error is resolved. But that handler is called further down the Grape middleware stack.
# Rack span will then be the most reliable source for status codes.
# DEV: As a corollary, instrumenting Grape without Rack will provide incomplete
# DEV: status quote information.
status = endpoint.status
span.set_error(endpoint) if error_status_codes.include?(status)
end
span.set_tag(Tracing::Metadata::Ext::HTTP::TAG_STATUS_CODE, status) if status
end
def endpoint_start_render(*)
return if Thread.current[KEY_RENDER]
return unless enabled?
# Store the beginning of a trace
span = Tracing.trace(
Ext::SPAN_ENDPOINT_RENDER,
service: service_name,
type: Tracing::Metadata::Ext::HTTP::TYPE_TEMPLATE
)
span.set_tag(Tracing::Metadata::Ext::TAG_COMPONENT, Ext::TAG_COMPONENT)
span.set_tag(Tracing::Metadata::Ext::TAG_OPERATION, Ext::TAG_OPERATION_ENDPOINT_RENDER)
Thread.current[KEY_RENDER] = true
rescue StandardError => e
Datadog.logger.error(e.message)
end
def endpoint_render(name, start, finish, id, payload)
return unless Thread.current[KEY_RENDER]
Thread.current[KEY_RENDER] = false
return unless enabled?
span = Tracing.active_span
return unless span
# catch thrown exceptions
begin
# Measure service stats
Contrib::Analytics.set_measured(span)
handle_error(span, payload[:exception_object]) if payload[:exception_object]
ensure
span.start(start)
span.finish(finish)
end
rescue StandardError => e
Datadog.logger.error(e.message)
end
def endpoint_run_filters(name, start, finish, id, payload)
return unless enabled?
# safe-guard to prevent submitting empty filters
zero_length = (finish - start).zero?
filters = payload[:filters]
type = payload[:type]
return if (!filters || filters.empty?) || !type || zero_length
span = Tracing.trace(
Ext::SPAN_ENDPOINT_RUN_FILTERS,
service: service_name,
type: Tracing::Metadata::Ext::HTTP::TYPE_INBOUND,
start_time: start
)
begin
span.set_tag(Tracing::Metadata::Ext::TAG_COMPONENT, Ext::TAG_COMPONENT)
span.set_tag(Tracing::Metadata::Ext::TAG_OPERATION, Ext::TAG_OPERATION_ENDPOINT_RUN_FILTERS)
# Set analytics sample rate
Contrib::Analytics.set_sample_rate(span, analytics_sample_rate) if analytics_enabled?
# Measure service stats
Contrib::Analytics.set_measured(span)
# catch thrown exceptions
handle_error(span, payload[:exception_object]) if payload[:exception_object]
span.set_tag(Ext::TAG_FILTER_TYPE, type.to_s)
ensure
span.start(start)
span.finish(finish)
end
rescue StandardError => e
Datadog.logger.error(e.message)
end
private
def handle_error(span, exception, status = nil)
status ||= (exception.status if exception.respond_to?(:status))
if status
span.set_error(exception) if error_status_codes.include?(status)
else
on_error.call(span, exception)
end
end
def error_status_codes
datadog_configuration[:error_status_codes]
end
def on_error
datadog_configuration[:on_error] || Tracing::SpanOperation::Events::DEFAULT_ON_ERROR
end
def api_view(api)
# If the API inherits from Grape::API in version >= 1.2.0
# then the API will be an instance and the name must be derived from the base.
# See https://github.com/ruby-grape/grape/issues/1825
if defined?(::Grape::API::Instance) && api <= ::Grape::API::Instance
api.base.to_s
else
api.to_s
end
end
def endpoint_expand_path(endpoint)
route_path = endpoint.options[:path]
namespace = endpoint.routes.first && endpoint.routes.first.namespace || ''
parts = (namespace.split('/') + route_path).reject { |p| p.blank? || p.eql?('/') }
parts.join('/').prepend('/')
end
def service_name
datadog_configuration[:service_name]
end
def analytics_enabled?
Contrib::Analytics.enabled?(datadog_configuration[:analytics_enabled])
end
def analytics_sample_rate
datadog_configuration[:analytics_sample_rate]
end
def exception_is_error?(exception)
return false unless exception
return true unless exception.respond_to?(:status)
error_status?(status.exception)
end
def error_status?(status)
matcher = datadog_configuration[:error_statuses]
return true unless matcher
matcher.include?(status) if matcher
end
def enabled?
Datadog.configuration.tracing.enabled && \
datadog_configuration[:enabled] == true
end
def datadog_configuration
Datadog.configuration.tracing[:grape]
end
end
end
end
end
end
end