The internal payload object for a velocity alert. Payload is wrapped inside a FirebaseAlertData
object.
Signature:
export interface VelocityAlertPayload
Properties
Property | Type | Description |
---|---|---|
"@type" | "type.googleapis.com/google.events.firebase.firebasealerts.v1.CrashlyticsVelocityAlertPayload" | |
crashCount | number | The number of user sessions for the given app version that had this specific crash issue in the time period used to trigger the velocity alert. |
crashPercentage | number | The percentage of user sessions for the given app version that had this specific crash issue in the time period used to trigger the velocity alert. |
createTime | string | The time that the Crashlytics issue gets created |
firstVersion | string | The first app version where this issue was seen, and not necessarily the version that has triggered the alert. |
issue | Issue | Basic information of the Crashlytics issue |
alerts.crashlytics.VelocityAlertPayload."@type"
Signature:
alerts.crashlytics.VelocityAlertPayload.crashCount
The number of user sessions for the given app version that had this specific crash issue in the time period used to trigger the velocity alert.
Signature:
crashCount: number;
alerts.crashlytics.VelocityAlertPayload.crashPercentage
The percentage of user sessions for the given app version that had this specific crash issue in the time period used to trigger the velocity alert.
Signature:
crashPercentage: number;
alerts.crashlytics.VelocityAlertPayload.createTime
The time that the Crashlytics issue gets created
Signature:
createTime: string;
alerts.crashlytics.VelocityAlertPayload.firstVersion
The first app version where this issue was seen, and not necessarily the version that has triggered the alert.
Signature:
firstVersion: string;
alerts.crashlytics.VelocityAlertPayload.issue
Basic information of the Crashlytics issue
Signature:
issue: Issue;