Type String Event analyticsRequest Revision Release 2024.3703 Keywords analytics, Flurry Analytics, analyticsRequest, phase See also analyticsRequest flurryAnalytics.*
String indicating the phase of the analyticsRequest event. Possible values include:
"init"
— Indicates that the Flurry plugin was initialized successfully. You must wait for this event phase before trying to log analytics events or start timed events. For this phase, the event
property of event.data provides information about the session ID.
"recorded"
— Indicates that an event was successfully recorded (flurryAnalytics.logEvent()). For this phase, the event
property of event.data provides context on the logged event.
"began"
— Indicates that a timed event was successfully started (flurryAnalytics.startTimedEvent()). For this phase, the event
property of event.data provides context on the logged event.
"ended"
— Indicates that a timed event was successfully ended (flurryAnalytics.endTimedEvent()). For this phase, the event
property of event.data provides context on the logged event.
"failed"
— Indicates that an event was not recorded. For this phase, event.isError will be true
and event.response provides additional context on the error. In addition, event.data provides more detailed information about the error.