Class/Object

com.twitter.finagle.exception

Reporter

Related Docs: object Reporter | package exception

Permalink

sealed case class Reporter(client: Scribe[Future], serviceName: String, statsReceiver: StatsReceiver = NullStatsReceiver, sourceAddress: Option[String] = ..., clientAddress: Option[String] = None) extends Monitor with Product with Serializable

An implementation of ExceptionReceiver custom to the chickadee reporting service.

Optionally logs stats to a statsReceiver if desired.

Note that this implementation does not guarantee that a logged exception will be received by the configured scribe endpoint because it just drops a failed message and does not retry. This is because it is intended to log to a local (i.e. on the same machine) scribe daemon, in which case there should be no network failure. If there is failure in this case, something else is very wrong!

Linear Supertypes
Serializable, Serializable, Product, Equals, Monitor, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Reporter
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Monitor
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Reporter(client: Scribe[Future], serviceName: String, statsReceiver: StatsReceiver = NullStatsReceiver, sourceAddress: Option[String] = ..., clientAddress: Option[String] = None)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def andThen(next: Monitor): Monitor

    Permalink
    Definition Classes
    Monitor
  5. def apply(f: ⇒ Unit): Unit

    Permalink
    Definition Classes
    Monitor
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. val client: Scribe[Future]

    Permalink
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def createEntry(e: Throwable): LogEntry

    Permalink

    Create a default ServiceException and fold in the modifiers (i.e.

    Create a default ServiceException and fold in the modifiers (i.e. to add a source/client endpoint).

  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def handle(t: Throwable): Boolean

    Permalink

    Log an exception to the specified scribe endpoint.

    Log an exception to the specified scribe endpoint.

    See top level comment for this class for more details on performance implications.

    Definition Classes
    Reporter → Monitor
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. def orElse(next: Monitor): Monitor

    Permalink
    Definition Classes
    Monitor
  19. val serviceName: String

    Permalink
  20. val statsReceiver: StatsReceiver

    Permalink
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  22. def tryHandle(exc: Throwable): Try[Unit]

    Permalink
    Attributes
    protected
    Definition Classes
    Monitor
  23. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. def withClient(address: InetAddress = InetAddress.getLoopbackAddress): Reporter

    Permalink

    Add a modifier to append a client address (i.e.

    Add a modifier to append a client address (i.e. endpoint) to a generated ServiceException.

    The endpoint string is the ip address of the host (e.g. "127.0.0.1").

  27. def withSource(address: SocketAddress): Reporter

    Permalink

    Add a modifier to append a source address (i.e.

    Add a modifier to append a source address (i.e. endpoint) to a generated ServiceException.

    The endpoint string is the ip of the host concatenated with the port of the socket (e.g. "127.0.0.1:8080"). This is retained for orthogonality of exterior interfaces. We use the host name internaly.

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Monitor

Inherited from AnyRef

Inherited from Any

Ungrouped