/graylog_exception_notifier

Send rails exceptions to graylog2 via exception_notification.

Primary LanguageRuby

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