Class: NewRelic::Agent::CrossAppMonitor
- Inherits:
-
Object
- Object
- NewRelic::Agent::CrossAppMonitor
show all
- Includes:
- EncodingFunctions
- Defined in:
- lib/new_relic/agent/cross_app_monitor.rb
Defined Under Namespace
Modules: EncodingFunctions
Constant Summary
collapse
'X-NewRelic-ID'
'X-NewRelic-App-Data'
'X-NewRelic-Transaction'
%W{
#{NEWRELIC_TXN_HEADER} HTTP_X_NEWRELIC_TRANSACTION X_NEWRELIC_TRANSACTION
}
%W{
#{NEWRELIC_ID_HEADER} HTTP_X_NEWRELIC_ID X_NEWRELIC_ID
}
%w{Content-Length HTTP_CONTENT_LENGTH CONTENT_LENGTH}
- THREAD_ID_KEY =
Because we aren’t in the right spot when our transaction actually starts, hold client_cross_app_id we get thread local until then.
:newrelic_client_cross_app_id
- THREAD_TXN_KEY =
Same for the referring transaction guid
:newrelic_cross_app_referring_txn_info
Instance Method Summary
collapse
decode_with_key, encode_with_key, obfuscate_with_key
Constructor Details
Returns a new instance of CrossAppMonitor.
63
64
65
66
67
68
69
70
71
|
# File 'lib/new_relic/agent/cross_app_monitor.rb', line 63
def initialize(events = nil)
events ||= Agent.instance.events
events.subscribe(:finished_configuring) do
register_event_listeners
end
end
|
Instance Method Details
#build_payload(timings, content_length) ⇒ Object
175
176
177
178
179
180
181
182
183
184
185
186
|
# File 'lib/new_relic/agent/cross_app_monitor.rb', line 175
def build_payload(timings, content_length)
payload = [
NewRelic::Agent.config[:cross_process_id],
timings.transaction_name,
timings.queue_time_in_seconds.to_f,
timings.app_time_in_seconds.to_f,
content_length,
transaction_guid()
]
key = NewRelic::Agent.config[:encoding_key]
payload = obfuscate_with_key( key, NewRelic.json_dump(payload) )
end
|
#clear_client_cross_app_id ⇒ Object
#clear_referring_transaction_info ⇒ Object
#client_cross_app_id ⇒ Object
#client_referring_transaction_guid ⇒ Object
129
130
131
132
|
# File 'lib/new_relic/agent/cross_app_monitor.rb', line 129
def client_referring_transaction_guid
info = NewRelic::Agent::AgentThread.current[THREAD_TXN_KEY] or return nil
return info[0]
end
|
#client_referring_transaction_record_flag ⇒ Object
134
135
136
137
|
# File 'lib/new_relic/agent/cross_app_monitor.rb', line 134
def client_referring_transaction_record_flag
info = NewRelic::Agent::AgentThread.current[THREAD_TXN_KEY] or return nil
return info[1]
end
|
#content_length_from_request(request) ⇒ Object
216
217
218
|
# File 'lib/new_relic/agent/cross_app_monitor.rb', line 216
def content_length_from_request(request)
(request, CONTENT_LENGTH_HEADER_KEYS) || -1
end
|
#cross_app_enabled? ⇒ Boolean
#decoded_id(request) ⇒ Object
208
209
210
211
212
213
214
|
# File 'lib/new_relic/agent/cross_app_monitor.rb', line 208
def decoded_id(request)
encoded_id = (request, NEWRELIC_ID_HEADER_KEYS)
return "" if encoded_id.nil?
key = NewRelic::Agent.config[:encoding_key]
decode_with_key( key, encoded_id )
end
|
139
140
141
142
143
144
145
146
147
148
149
150
|
# File 'lib/new_relic/agent/cross_app_monitor.rb', line 139
def (, )
unless client_cross_app_id.nil?
NewRelic::Agent::Transaction.freeze_name
timings = NewRelic::Agent::BrowserMonitoring.timings
content_length = content_length_from_request()
(, timings, content_length)
set_metrics(client_cross_app_id, timings)
clear_client_cross_app_id
end
end
|
#register_event_listeners ⇒ Object
Expected sequence of events:
:before_call will save our cross application request id to the thread
:start_transaction will get called when a transaction starts up
:after_call will write our response headers/metrics and clean up the thread
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
# File 'lib/new_relic/agent/cross_app_monitor.rb', line 78
def register_event_listeners
NewRelic::Agent.logger.
debug("Wiring up Cross Application Tracing to events after finished configuring")
events = Agent.instance.events
events.subscribe(:before_call) do |env|
if should_process_request(env)
save_client_cross_app_id(env)
save_referring_transaction_info(env)
end
end
events.subscribe(:start_transaction) do
set_transaction_custom_parameters
end
events.subscribe(:after_call) do |env, (status_code, , body)|
(env, )
end
events.subscribe(:notice_error) do |_, options|
set_error_custom_parameters(options)
end
end
|
#save_client_cross_app_id(request_headers) ⇒ Object
#save_referring_transaction_info(request_headers) ⇒ Object
#set_error_custom_parameters(options) ⇒ Object
198
199
200
201
|
# File 'lib/new_relic/agent/cross_app_monitor.rb', line 198
def set_error_custom_parameters(options)
options[:client_cross_process_id] = client_cross_app_id() if client_cross_app_id()
end
|
#set_metrics(id, timings) ⇒ Object
203
204
205
206
|
# File 'lib/new_relic/agent/cross_app_monitor.rb', line 203
def set_metrics(id, timings)
metric_name = "ClientApplication/#{id}/all"
NewRelic::Agent.record_metric(metric_name, timings.app_time_in_seconds)
end
|
171
172
173
|
# File 'lib/new_relic/agent/cross_app_monitor.rb', line 171
def (, timings, content_length)
[NEWRELIC_APPDATA_HEADER] = build_payload(timings, content_length)
end
|
#set_transaction_custom_parameters ⇒ Object
188
189
190
191
192
193
194
195
196
|
# File 'lib/new_relic/agent/cross_app_monitor.rb', line 188
def set_transaction_custom_parameters
NewRelic::Agent.add_custom_parameters(:client_cross_process_id => client_cross_app_id()) if client_cross_app_id()
NewRelic::Agent.add_custom_parameters(:referring_transaction_guid => client_referring_transaction_guid()) if
client_referring_transaction_guid()
NewRelic::Agent.logger.debug "Referring transaction guid: %p" % [client_referring_transaction_guid()]
end
|
#should_process_request(request_headers) ⇒ Object
152
153
154
|
# File 'lib/new_relic/agent/cross_app_monitor.rb', line 152
def should_process_request()
return cross_app_enabled? && trusts?()
end
|
#transaction_guid ⇒ Object
#trusts?(request) ⇒ Boolean
Expects an ID of format “12#345”, and will only accept that!
163
164
165
166
167
168
169
|
# File 'lib/new_relic/agent/cross_app_monitor.rb', line 163
def trusts?(request)
id = decoded_id(request)
split_id = id.match(/(\d+)#\d+/)
return false if split_id.nil?
NewRelic::Agent.config[:trusted_account_ids].include?(split_id.captures.first.to_i)
end
|