## Airbrake.io notifier for Play 2.6 ## Installation (for original teamon branch) Add `play-airbrake` to your `project/Build.scala` file ``` scala val appDependencies = Seq( "eu.teamon" %% "play-airbrake" % "0.3.0" ) val main = PlayProject(appName, appVersion, appDependencies, mainLang = SCALA).settings( resolvers += "teamon.eu repo" at "http://repo.teamon.eu" ) ``` Your `app/Global.scala` should look like this ``` scala import play.api._ import play.api.mvc._ import play.airbrake.Airbrake object Global extends GlobalSettings { override def onError(request: RequestHeader, ex: Throwable) = { Airbrake.notify(request, ex) super.onError(request, ex) } } ``` For javascript notifications (not free plan) ```scala
@Html(play.airbrake.Airbrake.js) ``` For java integration your app/Global.java should look like this ```java class Global extends GlobalSettings { @Override public Result onError(RequestHeader request, Throwable t) { Airbrake.notify(request, t); return super.onError(request, t); } } ``` ## ConfigurationKey | Description | |
---|---|---|
airbrake.apiKey |
String, required | airbrake project api key |
airbrake.ssl |
Boolean, optional, defaults to false |
set to true if you have airbrake plan with SSL support |
airbrake.enabled |
Boolean, optional, defaults to Play.isProd |
optionally enable/disable notifications for different environment |
airbrake.endpoint |
String, optional, defaults to api.airbrake.io/notifier_api/v2/notices |
point notifier to you custom airbrake compatible service (e.g. errbit) |