2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
# If Mini Profiler is included via gem
|
2014-07-16 17:34:30 -05:00
|
|
|
if Rails.configuration.respond_to?(:load_mini_profiler) && Rails.configuration.load_mini_profiler
|
2013-04-11 01:24:08 -05:00
|
|
|
require 'rack-mini-profiler'
|
2013-09-09 06:19:23 -05:00
|
|
|
require 'flamegraph'
|
2016-06-30 12:21:40 -05:00
|
|
|
|
|
|
|
begin
|
|
|
|
require 'memory_profiler'
|
|
|
|
rescue => e
|
2017-07-27 20:20:09 -05:00
|
|
|
STDERR.put "#{e} failed to require mini profiler"
|
2016-06-30 12:21:40 -05:00
|
|
|
end
|
2014-12-28 20:30:54 -06:00
|
|
|
|
2013-04-11 01:24:08 -05:00
|
|
|
# initialization is skipped so trigger it
|
|
|
|
Rack::MiniProfilerRails.initialize!(Rails.application)
|
|
|
|
end
|
|
|
|
|
2018-12-09 21:29:20 -06:00
|
|
|
if defined?(Rack::MiniProfiler) && defined?(Rack::MiniProfiler::Config)
|
2013-03-25 01:19:59 -05:00
|
|
|
# note, we may want to add some extra security here that disables mini profiler in a multi hosted env unless user global admin
|
|
|
|
# raw_connection means results are not namespaced
|
|
|
|
#
|
|
|
|
# namespacing gets complex, cause mini profiler is in the rack chain way before multisite
|
2017-08-02 00:32:01 -05:00
|
|
|
Rack::MiniProfiler.config.storage_instance = Rack::MiniProfiler::RedisStore.new(
|
|
|
|
connection: DiscourseRedis.new(nil, namespace: false)
|
|
|
|
)
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2015-04-16 21:16:37 -05:00
|
|
|
skip = [
|
|
|
|
/^\/message-bus/,
|
2018-01-08 18:30:59 -06:00
|
|
|
/^\/extra-locales/,
|
2015-04-16 21:16:37 -05:00
|
|
|
/topics\/timings/,
|
|
|
|
/assets/,
|
|
|
|
/\/user_avatar\//,
|
|
|
|
/\/letter_avatar\//,
|
2015-12-08 23:40:49 -06:00
|
|
|
/\/letter_avatar_proxy\//,
|
2015-04-16 21:16:37 -05:00
|
|
|
/\/highlight-js\//,
|
2018-11-26 15:49:57 -06:00
|
|
|
/\/svg-sprite\//,
|
2015-04-16 21:16:37 -05:00
|
|
|
/qunit/,
|
|
|
|
/srv\/status/,
|
|
|
|
/commits-widget/,
|
|
|
|
/^\/cdn_asset/,
|
|
|
|
/^\/logs/,
|
|
|
|
/^\/site_customizations/,
|
2015-05-04 01:11:27 -05:00
|
|
|
/^\/uploads/,
|
2020-02-27 20:11:30 -06:00
|
|
|
/^\/secure-media-uploads/,
|
2015-05-04 01:11:27 -05:00
|
|
|
/^\/javascripts\//,
|
2015-05-05 00:50:13 -05:00
|
|
|
/^\/images\//,
|
2015-08-24 20:54:23 -05:00
|
|
|
/^\/stylesheets\//,
|
|
|
|
/^\/favicon\/proxied/
|
2015-04-16 21:16:37 -05:00
|
|
|
]
|
|
|
|
|
2016-03-15 18:54:40 -05:00
|
|
|
# we DO NOT WANT mini-profiler loading on anything but real desktops and laptops
|
|
|
|
# so let's rule out all handheld, tablet, and mobile devices
|
2013-02-25 10:42:20 -06:00
|
|
|
Rack::MiniProfiler.config.pre_authorize_cb = lambda do |env|
|
2014-05-06 17:23:52 -05:00
|
|
|
path = env['PATH_INFO']
|
2015-04-16 21:16:37 -05:00
|
|
|
|
2016-03-15 18:46:41 -05:00
|
|
|
(env['HTTP_USER_AGENT'] !~ /iPad|iPhone|Android/) &&
|
2017-07-27 20:20:09 -05:00
|
|
|
!skip.any? { |re| re =~ path }
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-03-24 22:09:28 -05:00
|
|
|
# without a user provider our results will use the ip address for namespacing
|
|
|
|
# with a load balancer in front this becomes really bad as some results can
|
2013-06-19 14:06:23 -05:00
|
|
|
# be stored associated with ip1 as the user and retrieved using ip2 causing 404s
|
2013-03-24 21:52:03 -05:00
|
|
|
Rack::MiniProfiler.config.user_provider = lambda do |env|
|
2013-03-24 22:36:55 -05:00
|
|
|
request = Rack::Request.new(env)
|
|
|
|
id = request.cookies["_t"] || request.ip || "unknown"
|
|
|
|
id = id.to_s
|
|
|
|
# some security, lets not have these tokens floating about
|
|
|
|
Digest::MD5.hexdigest(id)
|
2013-03-24 21:52:03 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
Rack::MiniProfiler.config.position = 'left'
|
|
|
|
Rack::MiniProfiler.config.backtrace_ignores ||= []
|
|
|
|
Rack::MiniProfiler.config.backtrace_ignores << /lib\/rack\/message_bus.rb/
|
|
|
|
Rack::MiniProfiler.config.backtrace_ignores << /config\/initializers\/silence_logger/
|
|
|
|
Rack::MiniProfiler.config.backtrace_ignores << /config\/initializers\/quiet_logger/
|
|
|
|
|
2019-08-19 00:47:53 -05:00
|
|
|
Rack::MiniProfiler.config.backtrace_includes = [/^\/?(app|config|lib|test|plugins)/]
|
|
|
|
|
2013-08-30 01:44:17 -05:00
|
|
|
# Rack::MiniProfiler.counter_method(ActiveRecord::QueryMethods, 'build_arel')
|
|
|
|
# Rack::MiniProfiler.counter_method(Array, 'uniq')
|
2013-02-05 13:16:51 -06:00
|
|
|
# require "#{Rails.root}/vendor/backports/notification"
|
|
|
|
|
2013-03-24 22:09:28 -05:00
|
|
|
# inst = Class.new
|
|
|
|
# class << inst
|
|
|
|
# def start(name,id,payload)
|
|
|
|
# if Rack::MiniProfiler.current && name !~ /(process_action.action_controller)|(render_template.action_view)/
|
|
|
|
# @prf ||= {}
|
|
|
|
# @prf[id] ||= []
|
|
|
|
# @prf[id] << Rack::MiniProfiler.start_step("#{payload[:serializer] if name =~ /serialize.serializer/} #{name}")
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
|
|
|
|
# def finish(name,id,payload)
|
|
|
|
# if Rack::MiniProfiler.current && name !~ /(process_action.action_controller)|(render_template.action_view)/
|
|
|
|
# t = @prf[id].pop
|
|
|
|
# @prf.delete id unless t
|
|
|
|
# Rack::MiniProfiler.finish_step t
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# end
|
2013-02-05 13:16:51 -06:00
|
|
|
# disabling for now cause this slows stuff down too much
|
|
|
|
# ActiveSupport::Notifications.subscribe(/.*/, inst)
|
|
|
|
|
|
|
|
# Rack::MiniProfiler.profile_method ActionView::PathResolver, 'find_templates'
|
|
|
|
end
|
2015-08-19 01:58:25 -05:00
|
|
|
|
|
|
|
if ENV["PRINT_EXCEPTIONS"]
|
2017-07-27 20:20:09 -05:00
|
|
|
trace = TracePoint.new(:raise) do |tp|
|
2015-08-19 01:58:25 -05:00
|
|
|
puts tp.raised_exception
|
|
|
|
puts tp.raised_exception.backtrace.join("\n")
|
|
|
|
puts
|
|
|
|
end
|
|
|
|
trace.enable
|
|
|
|
end
|