No commit activity in last 3 years
No release in over 3 years
Surface slow code paths in your Rails 3 app via Growl / libnotify
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0
 Project Readme

SlowGrowl

Rails 3 plugin which surfaces slow code paths in your Rails application by integrating with the new Notifications API in Rails 3 with your system Growl (OSX) or libnotify (Linux) notification service. By default, any activity which takes longer than one second, will generate a growl alert, with the description of the action, time taken, and other meta data. A preview in action:

slowgrowl notification

Integrating with Rails 3

# in your Gemfile
group :development do
    gem 'slowgrowl'
end

That's it.

Optional Configuration for SlowGrowl

# in your config/environments/development.rb
config.slowgrowl.warn = 1000    # growl any action which takes > 1000ms (1s)
config.slowgrowl.sticky = true  # make really slow (2x warn) alerts sticky

Resources