Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scout APM Instrument React SSR methods #1379

Merged
merged 1 commit into from
Aug 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions lib/react_on_rails/helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,12 @@ def in_mailer?

controller.is_a?(ActionMailer::Base)
end

if defined?(ScoutApm)
include ScoutApm::Tracer
instrument_method :react_component, type: "ReactOnRails", name: "react_component"
instrument_method :react_component_hash, type: "ReactOnRails", name: "react_component_hash"
end
end
end
# rubocop:enable Metrics/ModuleLength
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,11 @@ def console_polyfill
JS
end

if defined?(ScoutApm)
include ScoutApm::Tracer
instrument_method :exec_server_render_js, type: "ReactOnRails", name: "ExecJs React Server Rendering"
end

private

def file_url_to_string(url)
Expand Down