Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

SOLVED

Analytics Request Queued

Avatar

Level 1

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?

1 Accepted Solution

Avatar

Correct answer by
Level 1

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

Avatar

Correct answer by
Level 1

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.