LiveStats

data class LiveStats(val pendingCount: Long? = null, val actionedCount: Long? = null, val escalatedCount: Long? = null, val inboundCount: Long? = null, val actionRate: Long? = null, val avgHandlingTimeSec: Long? = null, val lastUpdated: Timestamp? = null)

Live statistics for reports for the current calendar day, filterable by queue, moderator, or report type.

Parameters

pendingCount

Number of reports currently not closed.

actionedCount

Number of reports closed today.

escalatedCount

Number of reports escalated today.

inboundCount

Reports received today.

actionRate

Percentage of reports actioned (actionedCount / inboundCount * 100), rounded to nearest integer.

avgHandlingTimeSec

Average time in seconds from report creation (or moderator assignment) to close.

lastUpdated

When these statistics were last computed.

Constructors

Link copied to clipboard
constructor(pendingCount: Long? = null, actionedCount: Long? = null, escalatedCount: Long? = null, inboundCount: Long? = null, actionRate: Long? = null, avgHandlingTimeSec: Long? = null, lastUpdated: Timestamp? = null)

Properties

Link copied to clipboard

Number of reports closed today.

Link copied to clipboard

Percentage of reports actioned (actionedCount / inboundCount * 100), rounded to nearest integer.

Link copied to clipboard

Average time in seconds from report creation (or moderator assignment) to close.

Link copied to clipboard

Number of reports escalated today.

Link copied to clipboard

Reports received today.

Link copied to clipboard

When these statistics were last computed.

Link copied to clipboard

Number of reports currently not closed.