override fun getMeetingStatsEventAttributes()

in amazon-chime-sdk/src/main/java/com/amazonaws/services/chime/sdk/meetings/analytics/DefaultMeetingStatsCollector.kt [55:63]


    override fun getMeetingStatsEventAttributes(): EventAttributes {
        return mutableMapOf(
            EventAttributeName.maxVideoTileCount to maxVideoTileCount,
            EventAttributeName.retryCount to retryCount,
            EventAttributeName.poorConnectionCount to poorConnectionCount,
            EventAttributeName.meetingDurationMs to if (meetingStartTimeMs == 0L) 0L else Calendar.getInstance().timeInMillis - meetingStartTimeMs,
            EventAttributeName.meetingStartDurationMs to if (meetingStartTimeMs == 0L) 0L else meetingStartTimeMs - meetingStartConnectingTimeMs
        )
    }