exception_notifier 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README +73 -0
- data/lib/exception_notifier.rb +30 -0
- data/lib/exception_notifier/notifier.rb +63 -0
- data/lib/exception_notifier/views/exception_notifier/_backtrace.text.erb +1 -0
- data/lib/exception_notifier/views/exception_notifier/_environment.text.erb +8 -0
- data/lib/exception_notifier/views/exception_notifier/_request.text.erb +4 -0
- data/lib/exception_notifier/views/exception_notifier/_session.text.erb +2 -0
- data/lib/exception_notifier/views/exception_notifier/_title.text.erb +3 -0
- data/lib/exception_notifier/views/exception_notifier/exception_notification.text.erb +13 -0
- metadata +64 -0
data/README
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
= Exception Notifier Plugin for Rails
|
2
|
+
|
3
|
+
The Exception Notifier plugin provides a mailer object and a default set of
|
4
|
+
templates for sending email notifications when errors occur in a Rails
|
5
|
+
application. The plugin is configurable, allowing programmers to specify:
|
6
|
+
|
7
|
+
* the sender address of the email
|
8
|
+
* the recipient addresses
|
9
|
+
* the text used to prefix the subject line
|
10
|
+
|
11
|
+
The email includes information about the current request, session, and
|
12
|
+
environment, and also gives a backtrace of the exception.
|
13
|
+
|
14
|
+
== Usage
|
15
|
+
|
16
|
+
As of Rails 3 ExceptionNotifier is used as a rack middleware
|
17
|
+
|
18
|
+
Whatever::Application.config.middleware.use ExceptionNotifier,
|
19
|
+
:email_prefix => "[Whatever] ",
|
20
|
+
:sender_address => %{"notifier" <notifier@example.com>},
|
21
|
+
:exception_recipients => %w{exceptions@example.com}
|
22
|
+
|
23
|
+
== Customization
|
24
|
+
|
25
|
+
By default, the notification email includes four parts: request, session,
|
26
|
+
environment, and backtrace (in that order). You can customize how each of those
|
27
|
+
sections are rendered by placing a partial named for that part in your
|
28
|
+
app/views/exception_notifier directory (e.g., _session.rhtml). Each partial has
|
29
|
+
access to the following variables:
|
30
|
+
|
31
|
+
* @controller: the controller that caused the error
|
32
|
+
* @request: the current request object
|
33
|
+
* @exception: the exception that was raised
|
34
|
+
* @backtrace: a sanitized version of the exception's backtrace
|
35
|
+
* @data: a hash of optional data values that were passed to the notifier
|
36
|
+
* @sections: the array of sections to include in the email
|
37
|
+
|
38
|
+
You can reorder the sections, or exclude sections completely, by altering the
|
39
|
+
ExceptionNotifier.sections variable. You can even add new sections that
|
40
|
+
describe application-specific data--just add the section's name to the list
|
41
|
+
(whereever you'd like), and define the corresponding partial. Then, if your
|
42
|
+
new section requires information that isn't available by default, make sure
|
43
|
+
it is made available to the email using the exception_data macro:
|
44
|
+
|
45
|
+
class ApplicationController < ActionController::Base
|
46
|
+
before_filter :log_additional_data
|
47
|
+
...
|
48
|
+
protected
|
49
|
+
def log_additional_data
|
50
|
+
request.env["exception_notifier.exception_data"] = {
|
51
|
+
:document => @document,
|
52
|
+
:person => @person
|
53
|
+
}
|
54
|
+
end
|
55
|
+
...
|
56
|
+
end
|
57
|
+
|
58
|
+
In the above case, @document and @person would be made available to the email
|
59
|
+
renderer, allowing your new section(s) to access and display them. See the
|
60
|
+
existing sections defined by the plugin for examples of how to write your own.
|
61
|
+
|
62
|
+
== Rails 2.3 stable and earlier
|
63
|
+
|
64
|
+
If you are running Rails 2.3 then see the branch for that:
|
65
|
+
|
66
|
+
http://github.com/rails/exception_notification/tree/2-3-stable
|
67
|
+
|
68
|
+
If you are running pre-rack Rails then see this tag:
|
69
|
+
|
70
|
+
http://github.com/rails/exception_notification/tree/pre-2-3
|
71
|
+
|
72
|
+
|
73
|
+
Copyright (c) 2005 Jamis Buck, released under the MIT license
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'action_dispatch'
|
2
|
+
require 'exception_notifier/notifier'
|
3
|
+
|
4
|
+
class ExceptionNotifier
|
5
|
+
def self.default_ignore_exceptions
|
6
|
+
[].tap do |exceptions|
|
7
|
+
exceptions << ActiveRecord::RecordNotFound if defined? ActiveRecord
|
8
|
+
exceptions << AbstractController::ActionNotFound if defined? AbstractController
|
9
|
+
exceptions << ActionController::RoutingError if defined? ActionController
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def initialize(app, options = {})
|
14
|
+
@app, @options = app, options
|
15
|
+
@options[:ignore_exceptions] ||= self.class.default_ignore_exceptions
|
16
|
+
end
|
17
|
+
|
18
|
+
def call(env)
|
19
|
+
@app.call(env)
|
20
|
+
rescue Exception => exception
|
21
|
+
options = (env['exception_notifier.options'] ||= {})
|
22
|
+
options.reverse_merge!(@options)
|
23
|
+
|
24
|
+
unless Array.wrap(options[:ignore_exceptions]).include?(exception.class)
|
25
|
+
Notifier.exception_notification(env, exception).deliver
|
26
|
+
end
|
27
|
+
|
28
|
+
raise exception
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
require 'action_mailer'
|
2
|
+
require 'pp'
|
3
|
+
|
4
|
+
class ExceptionNotifier
|
5
|
+
class Notifier < ActionMailer::Base
|
6
|
+
self.mailer_name = 'exception_notifier'
|
7
|
+
self.append_view_path "#{File.dirname(__FILE__)}/views"
|
8
|
+
|
9
|
+
class << self
|
10
|
+
def default_sender_address
|
11
|
+
%("Exception Notifier" <exception.notifier@default.com>)
|
12
|
+
end
|
13
|
+
|
14
|
+
def default_exception_recipients
|
15
|
+
[]
|
16
|
+
end
|
17
|
+
|
18
|
+
def default_email_prefix
|
19
|
+
"[ERROR] "
|
20
|
+
end
|
21
|
+
|
22
|
+
def default_sections
|
23
|
+
%w(request session environment backtrace)
|
24
|
+
end
|
25
|
+
|
26
|
+
def default_options
|
27
|
+
{ :sender_address => default_sender_address,
|
28
|
+
:exception_recipients => default_exception_recipients,
|
29
|
+
:email_prefix => default_email_prefix,
|
30
|
+
:sections => default_sections }
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def exception_notification(env, exception)
|
35
|
+
@env = env
|
36
|
+
@exception = exception
|
37
|
+
@options = (env['exception_notifier.options'] || {}).reverse_merge(self.class.default_options)
|
38
|
+
@controller = env['action_controller.instance']
|
39
|
+
@request = ActionDispatch::Request.new(env)
|
40
|
+
@backtrace = clean_backtrace(exception)
|
41
|
+
@sections = @options[:sections]
|
42
|
+
data = env['exception_notifier.exception_data'] || {}
|
43
|
+
|
44
|
+
data.each do |name, value|
|
45
|
+
instance_variable_set("@#{name}", value)
|
46
|
+
end
|
47
|
+
|
48
|
+
prefix = "#{@options[:email_prefix]}#{@controller.controller_name}##{@controller.action_name}"
|
49
|
+
subject = "#{prefix} (#{@exception.class}) #{@exception.message.inspect}"
|
50
|
+
|
51
|
+
mail(:to => @options[:exception_recipients], :from => @options[:sender_address], :subject => subject) do |format|
|
52
|
+
format.text { render "#{mailer_name}/exception_notification" }
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
private
|
57
|
+
def clean_backtrace(exception)
|
58
|
+
Rails.respond_to?(:backtrace_cleaner) ?
|
59
|
+
Rails.backtrace_cleaner.send(:filter, exception.backtrace) :
|
60
|
+
exception.backtrace
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= raw @backtrace.join("\n") %>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<% filtered_env = @request.filtered_env -%>
|
2
|
+
<% max = filtered_env.keys.max { |a, b| a.length <=> b.length } -%>
|
3
|
+
<% filtered_env.keys.sort.each do |key| -%>
|
4
|
+
* <%= raw("%-*s: %s" % [max.length, key, filtered_env[key].to_s.strip]) %>
|
5
|
+
<% end -%>
|
6
|
+
|
7
|
+
* Process: <%= raw $$ %>
|
8
|
+
* Server : <%= raw `hostname -s`.chomp %>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
A <%= @exception.class %> occurred in <%= @controller.controller_name %>#<%= @controller.action_name %>:
|
2
|
+
|
3
|
+
<%= raw @exception.message %>
|
4
|
+
<%= raw @backtrace.first %>
|
5
|
+
|
6
|
+
<% sections = @sections.map do |section|
|
7
|
+
summary = render(section).strip
|
8
|
+
unless summary.blank?
|
9
|
+
title = render("title", :title => section).strip
|
10
|
+
"#{title}\n\n#{summary.gsub(/^/, " ")}\n\n"
|
11
|
+
end
|
12
|
+
end %>
|
13
|
+
<%= raw sections.join %>
|
metadata
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: exception_notifier
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jamis Buck
|
8
|
+
- Josh Peek
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2010-03-13 00:00:00 -08:00
|
14
|
+
default_executable:
|
15
|
+
dependencies: []
|
16
|
+
|
17
|
+
description:
|
18
|
+
email: timocratic@gmail.com
|
19
|
+
executables: []
|
20
|
+
|
21
|
+
extensions: []
|
22
|
+
|
23
|
+
extra_rdoc_files: []
|
24
|
+
|
25
|
+
files:
|
26
|
+
- README
|
27
|
+
- lib/exception_notifier/notifier.rb
|
28
|
+
- lib/exception_notifier/views/exception_notifier/_backtrace.text.erb
|
29
|
+
- lib/exception_notifier/views/exception_notifier/_environment.text.erb
|
30
|
+
- lib/exception_notifier/views/exception_notifier/_request.text.erb
|
31
|
+
- lib/exception_notifier/views/exception_notifier/_session.text.erb
|
32
|
+
- lib/exception_notifier/views/exception_notifier/_title.text.erb
|
33
|
+
- lib/exception_notifier/views/exception_notifier/exception_notification.text.erb
|
34
|
+
- lib/exception_notifier.rb
|
35
|
+
has_rdoc: true
|
36
|
+
homepage:
|
37
|
+
licenses: []
|
38
|
+
|
39
|
+
post_install_message:
|
40
|
+
rdoc_options: []
|
41
|
+
|
42
|
+
require_paths:
|
43
|
+
- lib
|
44
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: "0"
|
49
|
+
version:
|
50
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: "0"
|
55
|
+
version:
|
56
|
+
requirements: []
|
57
|
+
|
58
|
+
rubyforge_project:
|
59
|
+
rubygems_version: 1.3.5
|
60
|
+
signing_key:
|
61
|
+
specification_version: 3
|
62
|
+
summary: Exception notification by email for Rails apps
|
63
|
+
test_files: []
|
64
|
+
|