This notifier sends notifications to your Hipchat room.
Just add the hipchat gem to your Gemfile
:
gem 'hipchat'
To configure it, you need to set the token
and room_name
options, like this:
Rails.application.config.middleware.use ExceptionNotification::Rack,
email: {
email_prefix: '[PREFIX] ',
sender_address: %{"notifier" <[email protected]>},
exception_recipients: %w{[email protected]}
},
hipchat: {
api_token: 'my_token',
room_name: 'my_room'
}
String, required
The HipChat room where the notifications must be published to.
String, required
The API token to allow access to your HipChat account.
Boolean, optional
Notify users. Default : false.
String, optional
Color of the message. Default : 'red'.
String, optional, maximum length : 15
Message will appear from this nickname. Default : 'Exception'.
String, optional
Custom Server URL for self-hosted, Enterprise HipChat Server
For all options & possible values see Hipchat API.