SignalCounts

data class SignalCounts(val total: Int, val failed: Int)

Aggregate tally of collected signals for a category.

Constructors

Link copied to clipboard
constructor(total: Int, failed: Int)

Properties

Link copied to clipboard
val failed: Int

Number of signals whose probe failed (DisplayHint.Error).

Link copied to clipboard
val ok: Int

Number of successfully collected signals (total - failed).

Link copied to clipboard
val total: Int

Total number of signals (successful + failed).