No commit activity in last 3 years
No release in over 3 years
Use exception_notification to send rails exceptions to graylog2.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Using the exception_notification gem in Rails to send exception emails ? This gem provides a notifier class for exception_notification to send exceptions to graylog2.

Installation

  • Add the gem to your Gemfile.

      gem "graylog_exception_notifier"
    
  • Configure the gem in config/enviroments/production.rb

      Rails.application.config.middleware.use ExceptionNotification::Rack,
                                        :graylog => {
                                            :hostname => "graylog2.com",
                                            :port => 12201,
                                            :max_chunk_size => 'WAN',
                                            :app_name => 'app_name'
                                        }
    

Dependencies