Analytics Request Queued | Community
Skip to main content
August 29, 2019
Solved

Analytics Request Queued

  • August 29, 2019
  • 1 reply
  • 1942 views

I'm trying to implement adobe analytics in an iOS app, but I'm always getting "Analytics Request Queued" in the logs.

"[AdobeExperienceSDK DEBUG <com.adobe.module.analytics>]: Analytics Request Queued"

Initialization code:

ACPCore.setLogLevel(.debug)

ACPCore.configure(withAppId: appID)
       

ACPAnalytics.registerExtension()

ACPMobileServices.registerExtension()

ACPUserProfile.registerExtension()

ACPIdentity.registerExtension()

ACPLifecycle.registerExtension()

ACPSignal.registerExtension()

ACPCore.start {

     ACPCore.lifecycleStart(nil)

}


So the first lifecycle event and every event after that is not being sent and it's being queued.
Can someone point me in the right direction? What might go wrong here?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by nporter

Hi vedranb27095129, one thought is that you may have a batch limit set for your Analytics hits. Lets say you have a batchLimit set to 3, the Analytics extension won't send hits until you have 3 hits queued. This batch limit can be edited in the Analytics extension in Launch.

You can try using ACPAnalytics.sendQueuedHits() to force send any queued hits.

1 reply

nporterAccepted solution
Level 2
September 10, 2019

Hi vedranb27095129, one thought is that you may have a batch limit set for your Analytics hits. Lets say you have a batchLimit set to 3, the Analytics extension won't send hits until you have 3 hits queued. This batch limit can be edited in the Analytics extension in Launch.

You can try using ACPAnalytics.sendQueuedHits() to force send any queued hits.