Skip to content
This repository has been archived by the owner on Jun 8, 2019. It is now read-only.

Commit

Permalink
Merge pull request airbrake#10 from Florent2/patch-1
Browse files Browse the repository at this point in the history
Change Hoptoad references to Airbrake.
  • Loading branch information
Gabe Berke-Williams committed Sep 3, 2011
2 parents 5dbf4d2 + 4648ee5 commit 135065e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -130,7 +130,7 @@ this rake task (from RAILS_ROOT):

rake airbrake:test

If everything is configured properly, that task will send a notice to Hoptoad
If everything is configured properly, that task will send a notice to Airbrake
which will be visible immediately.

Rack
Expand Down Expand Up @@ -219,8 +219,8 @@ ID of the error that is returned from Airbrake.

You can also turn the middleware that handles this completely off by setting `config.user_information` to false.

Tracking deployments in Hoptoad
-------------------------------
Tracking deployments in Airbrake
--------------------------------

Paying Airbrake plans support the ability to track deployments of your application in Airbrake.
By notifying Airbrake of your application deployments, all errors are resolved when a deploy occurs,
Expand Down Expand Up @@ -263,7 +263,7 @@ While in your controllers you use the `notify_airbrake` method, anywhere else in
your code, use `Airbrake.notify`. Airbrake 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 Hoptoad catches an exception it sends the class name of that exception object.
* `:error_class` - Use this to group similar errors together. When Airbrake 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 Airbrake, passing a Hash as :parameters as in the example above is the most common use case. When Airbrake catches an exception in a controller, the actual HTTP client request parameters are sent using this key.

Expand Down Expand Up @@ -298,7 +298,7 @@ them even logged.
This filter will only be applied to automatic notifications, not manual
notifications (when #notify is called directly).

Hoptoad ignores the following exceptions by default:
Airbrake ignores the following exceptions by default:

AbstractController::ActionNotFound
ActiveRecord::RecordNotFound
Expand Down Expand Up @@ -341,7 +341,7 @@ To ignore exceptions based on other conditions, use #ignore_by_filter:
end
end

To replace sensitive information sent to the Hoptoad service with [FILTERED] use #params_filters:
To replace sensitive information sent to the Airbrake service with [FILTERED] use #params_filters:

Airbrake.configure do |config|
config.api_key = '1234567890abcdef'
Expand Down

0 comments on commit 135065e

Please sign in to comment.