miniprofiler
miniprofiler copied to clipboard
The analyzer being polluted by requests to refresh schema
Many of the sql being logged:
SELECT COUNT(*)
FROM pg_class c
LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind in ('v','r')
AND c.relname = $1
AND n.nspname = ANY (current_schemas(false))
The log of this kind of SQL be more aggressive if I enable ActiveAdmin inside routes.rb This make very tough for me to look at the important sqls (the one that really matters). Any thought?