Skip to content

Latest commit

 

History

History
89 lines (67 loc) · 1.93 KB

README.md

File metadata and controls

89 lines (67 loc) · 1.93 KB

Airbrake.io notifier for Play 2.2.2

Instalation

Add play-airbrake to your project/Build.scala/build.sbt file

val appDependencies = Seq(
  "com.tegonal" %% "play-airbrake" % "0.3.2"
)

val main = PlayProject(appName, appVersion, appDependencies, mainLang = SCALA).settings(
  resolvers += "Tegonal Releases" at "https://github.com/tegonal/tegonal-mvn/raw/master/"
)

Your app/Global.scala should look like this

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)

<head>
  @Html(play.airbrake.Airbrake.js)
</head>

For java integration your app/Global.java should look like this

class Global extends GlobalSettings {
  @Override
  public Result onError(RequestHeader request, Throwable t) {
    Airbrake.notify(request, t);
    return super.onError(request, t);
  }
}

Configuration

Key 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)