rack-mini-profiler is showing profiling static files

Viewed 2216

I'm using rack-mini-profiler after watching it's railscast (http://railscasts.com/episodes/368-miniprofiler).

I added it to my Gemfile:

gem 'rack-mini-profiler'

Installed it using bundler and started my dev environment using "rails s". The profilling works, it shows up at the left upper corner of the web page, but it happens to profile all the static files (js, css, images, etc). It also seems that it has a limit of 10 lines, so the actual request is hidden.

enter image description here

enter image description here

Is it possible to configure it so it will avoid profiling static files?

1 Answers
Related