Diagnostics

data class Diagnostics(val tracked: Long, val dropped: Long, val persisted: Long, val delivered: Long, val retrying: Long, val deadLettered: Long, val queueDepth: Long)

Read-only snapshot of internal counters. Values are monotonically increasing within a process lifetime and reset to zero on process start.

Since

1.0.0

Constructors

Link copied to clipboard
constructor(tracked: Long, dropped: Long, persisted: Long, delivered: Long, retrying: Long, deadLettered: Long, queueDepth: Long)

Properties

Link copied to clipboard

Events moved to the dead-letter queue.

Link copied to clipboard

Events successfully delivered to all required adapters.

Link copied to clipboard

Events rejected by validation, sampling, or opt-out.

Link copied to clipboard

Events written to the local database.

Link copied to clipboard

Current number of un-delivered rows in events table.

Link copied to clipboard

Events currently waiting for a retry attempt.

Link copied to clipboard

Total events accepted by EventTracker.track.