ProjectLocker Exception Reporting ======== This is the notifier gem for integrating apps with [ProjectLocker Exception Reporting](http://www.projectlocker.com). When an uncaught exception occurs, Errata will POST the relevant data to the Errata server specified in your environment. Rails Installation ------------------ ### Rails 3.x Add the projectlocker_errata gem to your Gemfile. In Gemfile: gem "projectlocker_errata" Then from your project's RAILS_ROOT, and in your development environment, run: bundle install rails generate projectlocker_errata --api-key your_key_here That's it! The generator creates a file under `config/initializers/projectlocker_errata.rb` configuring Errata with your API key. This file should be checked into your version control system so that it is deployed to your staging and production environments. ### Rails 2.x Add the projectlocker_errata gem to your app. In config/environment.rb: config.gem 'projectlocker_errata' or if you are using bundler: gem 'projectlocker_errata', :require => 'projectlocker_errata/rails' Then from your project's RAILS_ROOT, and in your development environment, run: rake gems:install rake gems:unpack GEM=projectlocker_errata script/generate projectlocker_errata --api-key your_key_here As always, if you choose not to vendor the projectlocker_errata gem, make sure every server you deploy to has the gem installed or your application won't start. The generator creates a file under `config/initializers/projectlocker_errata.rb` configuring Errata with your API key. This file should be checked into your version control system so that it is deployed to your staging and production environments. Non-rails apps using Bundler ---------------------------- There is an undocumented dependency in `activesupport` where the `i18n` gem is required only if the core classes extensions are used (`active_support/core_ext`). This can lead to a confusing `LoadError` exception when using Errata. Until this is fixed in `activesupport` the workaround is to add `i18n` to the Gemfile for your Sinatra/Rack/pure ruby application: gem 'i18n' gem 'projectlocker_errata' Rack ---- In order to use projectlocker_errata in a non-Rails rack app, just load projectlocker_errata, configure your API key, and use the ProjectlockerErrata::Rack middleware: require 'rack' require 'projectlocker_errata' ProjectlockerErrata.configure do |config| config.api_key = 'my_api_key' end app = Rack::Builder.app do run lambda { |env| raise "Rack down" } end use ProjectlockerErrata::Rack run app Sinatra ------- Using projectlocker_errata in a Sinatra app is just like a Rack app: require 'sinatra' require 'projectlocker_errata' ProjectlockerErrata.configure do |config| config.api_key = 'my api key' end use ProjectlockerErrata::Rack get '/' do raise "Sinatra has left the building" end Usage ----- For the most part, Errata works for itself. It intercepts the exception middleware calls, sends notifications and continues the middleware call chain. If you want to log arbitrary things which you've rescued yourself from a controller, you can do something like this: ... rescue => ex notify_projectlocker_errata(ex) flash[:failure] = 'Encryptions could not be rerouted, try again.' end ... The `#notify_projectlocker_errata` call will send the notice over to Errata for later analysis. While in your controllers you use the `notify_projectlocker_errata` method, anywhere else in your code, use `ProjectlockerErrata.notify`. To perform custom error processing after Errata has been notified, define the instance method `#rescue_action_in_public_without_projectlocker_errata(exception)` in your controller. Informing the User ------------------ The projectlocker_errata gem is capable of telling the user information about the error that just happened via the user_information option. They can give this error number in bug reports, for example. By default, if your 500.html contains the text then that comment will be replaced with the text "ProjectlockerErrata Error [errnum]". You can modify the text of the informer by setting `config.user_information`. Errata will replace "{{ error_id }}" with the ID of the error that is returned from Errata. ProjectlockerErrata.configure do |config| ... config.user_information = "
Tell the devs that it was {{ error_id }}'s fault.
" end You can also turn the middleware that handles this completely off by setting `config.user_information` to false. Note that this feature is reading the error id from `env['projectlocker_errata.error_id']`. When the exception is caught automatically in a controller, Errata sets that value. If you're, however, calling the Errata methods like `ProjectlockerErrata#notify` or `ProjectlockerErrata#notify_or_ignore`, please make sure you set that value. So the proper way of calling the "manual" methods would be `env['projectlocker_errata.error_id'] = ProjectlockerErrata.notify_or_ignore(...)`. Current user information ------------------------ Errata provides information about the current logged in user, so you could easily determine the user who experienced the error in your app. It uses `current_user` and `current_member` to identify the authenticated user, where `current_user` takes precedence. If you use different naming, please add the following lines to your controller: alias_method :current_duck, :current_user helper_method :current_duck Voila! You'll get information about a duck that experienced crash about your app. Asynchronous notifications with Errata ---------------------------------------- When your user experiences error using your application, it gets sent to Errata server. This introduces a considerable latency in the response. Asynchronous notification sending deals with this problem. Errata uses [girl_friday](https://github.com/mperham/girl_friday) to achieve this . (thanks Mike) It's disabled by default and you can enable it in your Errata configuration. ProjectlockerErrata.configure do |config| ... config.async = true end *Note that this feature is enabled with JRuby 1.6+, Rubinius 2.0+ and* *Ruby 1.9+. It does not support Ruby 1.8 because of its poor threading* *support.* For implementing custom asynchronous notice delivery, send a block to `config.async`. It receives `notice` param. Pass it to `ProjectlockerErrata.sender.send_to_projectlocker_errata` method to do actual delivery. In this way it's possible to move Errata notification even in background worker(e.g. Resque or Sidekiq). # Thread-based asynchronous send ProjectlockerErrata.configure do |config| ... config.async do |notice| Thread.new { ProjectlockerErrata.sender.send_to_projectlocker_errata(notice) } end end # Resque-like configuration ProjectlockerErrata.configure do |config| ... config.async do |notice| Resque.enqueue(ProjectlockerErrataDeliveryWorker, notice) end end Tracking deployments in Errata -------------------------------- Errata supports the ability to track deployments of your application in Errata. By notifying Errata of your application deployments, all errors are resolved when a deploy occurs, so that you'll be notified again about any errors that reoccur after a deployment. Additionally, it's possible to review the errors in Errata that occurred before and after a deploy. When Errata is installed as a gem, you need to add require 'projectlocker_errata/capistrano' to your deploy.rb If you don't use Capistrano, then you can use the following rake task from your deployment process to notify Errata: rake projectlocker_errata:deploy TO=#{rails_env} REVISION=#{current_revision} REPO=#{repository} USER=#{local_user} Going beyond exceptions ----------------------- You can also pass a hash to `ProjectlockerErrata.notify` method and store whatever you want, not just an exception. And you can also use it anywhere, not just in controllers: begin params = { # params that you pass to a method that can throw an exception } my_unpredicable_method(params) rescue => e ProjectlockerErrata.notify_or_ignore( :error_class => "Special Error", :error_message => "Special Error: #{e.message}", :parameters => params ) end While in your controllers you use the `notify_projectlocker_errata` method, anywhere else in your code, use `ProjectlockerErrata.notify`. Errata will get all the information about the error itself. As for a hash, these are the keys you should pass: * `:error_class` - Use this to group similar errors together. When Errata catches an exception it sends the class name of that exception object. * `:error_message` - This is the title of the error you see in the errors list. For exceptions it is "#{exception.class.name}: #{exception.message}" * `:parameters` - While there are several ways to send additional data to Errata, passing a Hash as :parameters as in the example above is the most common use case. When Errata catches an exception in a controller, the actual HTTP client request parameters are sent using this key. Errata merges the hash you pass with these default options: { :api_key => ProjectlockerErrata.api_key, :error_message => 'Notification', :backtrace => caller, :parameters => {}, :session => {} } You can override any of those parameters. ### Sending shell environment variables when "Going beyond exceptions" One common request we see is to send shell environment variables along with manual exception notification. We recommend sending them along with CGI data or Rack environment (:cgi_data or :rack_env keys, respectively.) See ProjectlockerErrata::Notice#initialize in lib/projectlocker_errata/notice.rb for more details. Filtering --------- You can specify a whitelist of errors that ProjectlockerErrata will not report on. Use this feature when you are so apathetic to certain errors that you don't want them even logged. This filter will only be applied to automatic notifications, not manual notifications (when #notify is called directly). Errata ignores the following exceptions by default: ActiveRecord::RecordNotFound ActionController::RoutingError ActionController::InvalidAuthenticityToken CGI::Session::CookieStore::TamperedWithCookie ActionController::UnknownAction AbstractController::ActionNotFound Mongoid::Errors::DocumentNotFound To ignore errors in addition to those, specify their names in your Errata configuration block. ProjectlockerErrata.configure do |config| config.api_key = '1234567890abcdef' config.ignore << "ActiveRecord::IgnoreThisError" end To ignore *only* certain errors (and override the defaults), use the #ignore_only attribute. ProjectlockerErrata.configure do |config| config.api_key = '1234567890abcdef' config.ignore_only = ["ActiveRecord::IgnoreThisError"] # or [] to ignore no exceptions. end To ignore certain user agents, add in the #ignore_user_agent attribute as a string or regexp: ProjectlockerErrata.configure do |config| config.api_key = '1234567890abcdef' config.ignore_user_agent << /Ignored/ config.ignore_user_agent << 'IgnoredUserAgent' end To ignore exceptions based on other conditions, use #ignore_by_filter: ProjectlockerErrata.configure do |config| config.api_key = '1234567890abcdef' config.ignore_by_filter do |exception_data| true if exception_data[:error_class] == "RuntimeError" end end To replace sensitive information sent to the ProjectlockerErrata service with [FILTERED] use #params_filters: ProjectlockerErrata.configure do |config| config.api_key = '1234567890abcdef' config.params_filters << "credit_card_number" end Note that, when rescuing exceptions within an ActionController method, Errata will reuse filters specified by #filter_parameter_logging. Testing ------- When you run your tests, you might notice that the Errata service is recording notices generated using #notify when you don't expect it to. You can use code like this in your test_helper.rb or spec_helper.rb files to redefine that method so those errors are not reported while running tests. module ProjectlockerErrata def self.notify(exception, opts = {}) # do nothing. end end Proxy Support ------------- The notifier supports using a proxy, if your server is not able to directly reach the Errata servers. To configure the proxy settings, added the following information to your Errata configuration block. ProjectlockerErrata.configure do |config| config.proxy_host = proxy.host.com config.proxy_port = 4038 config.proxy_user = foo # optional config.proxy_pass = bar # optional Logging ------------ Errata uses the logger from your Rails application by default, presumably STDOUT. If you don't like Errata scribbling to your standard output, just pass another `Logger` instance inside your configuration: ProjectlockerErrata.configure do |config| ... config.logger = Logger.new("path/to/your/log/file") end Supported Rails versions ------------------------ See SUPPORTED_RAILS_VERSIONS for a list of official supported versions of Rails. Please open up a [support ticket](http://portal.projectlocker.com/support/new_ticket) if you're using a version of Rails that is listed above and the notifier is not working properly. Javascript Notifier ------------------ To automatically include the Javascript node on every page, use this helper method from your layouts: <%= projectlocker_errata_javascript_notifier %> It's important to insert this very high in the markup, above all other javascript. Example: <%= projectlocker_errata_javascript_notifier %> ... This helper will automatically use the API key, host, and port specified in the configuration. The Javascript notifier tends to send much more notifications than the base Rails project. If you want to receive them into a separate Errata project, specify its API key in the `js_api_key` option. config.js_api_key = 'another-projects-api-key' To test the Javascript notifier in development environment, overwrite (temporarily) the development_environments option: ProjectlockerErrata.configure do |config| # ... config.development_environments = [] end Development ----------- See TESTING.md for instructions on how to run the tests. Credits ------- ![ProjectLocker](http://www.projectlocker.com/images/projectlocker_logo_244x30.png) Special thanks to ![thoughtbot](http://thoughtbot.com/images/tm/logo.png) and Airbrake as creators of the Airbrake gem upon which this is based. Errata is maintained and funded by [ProjectLocker](http://www.projectlocker.com) The names and logos for ProjectLocker, Airbrake, and thoughtbot are trademarks of their respective holders. License ------- Errata is Copyright © 2012-2013 ProjectLocker. It is free software, and may be redistributed under the terms specified in the MIT-LICENSE file.