hi team i am not able to find the analytics data in the dashboard, i am waiting from past 2 days, still i am not able to find my analytics, can any one please help me how to resolve my issue. | Adobe Higher Education
Skip to main content
August 6, 2022
解決済み

hi team i am not able to find the analytics data in the dashboard, i am waiting from past 2 days, still i am not able to find my analytics, can any one please help me how to resolve my issue.

  • August 6, 2022
  • 1 の返信
  • 1755 ビュー
No text available
このトピックへの返信は締め切られました。
ベストアンサー Jennifer_Dungan

Data should start to appear after about an hour... if it's been two days the likely scenarios are that you have the wrong suite name configured, or are pointing to the wrong tracking server...  or even that your implementation is incorrect and no tracking calls are being made (maybe you are getting a JS error that is causing the code to fail before the tracking call is made)...

 

Have you checked that tracking calls are being made using the Experience Platform Debugger?

 

Any information you can provide that would help us help you would be appreciated.

1 の返信

Jennifer_Dungan
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
August 6, 2022

Data should start to appear after about an hour... if it's been two days the likely scenarios are that you have the wrong suite name configured, or are pointing to the wrong tracking server...  or even that your implementation is incorrect and no tracking calls are being made (maybe you are getting a JS error that is causing the code to fail before the tracking call is made)...

 

Have you checked that tracking calls are being made using the Experience Platform Debugger?

 

Any information you can provide that would help us help you would be appreciated.

koteswara_D_K作成者
August 7, 2022

Hi 

 we have other Analytics, they are visible, same format i used but they are not visible in the board means i am not getting whats may be wrong.

Here is my implementation code. Kotlin -

 

val _LOG_TAG_2FA = "/2FA"

private fun showAlert(title: String, msg: String, listener: () -> Unit) {
val builder = AlertDialog.Builder(activity)
builder.setTitle(title)
builder.setMessage(msg)
builder.setCancelable(false)
builder.setPositiveButton("OK") { dialog, which ->
adobeAnalytics2FAAction("Account/Settings/2FAopt-in")
listener.invoke()
dialog.dismiss()
}
builder.show()
}

private fun showChoiceAlert(title: String, msg: String, listener: () -> Unit) {
val builder = AlertDialog.Builder(activity)
builder.setTitle(title)
builder.setMessage(msg)
builder.setCancelable(false)
builder.setNegativeButton("Cancel") { dialog, which ->
adobeAnalytics2FAAction("Account/Settings/2FAopt-in")
dialog.dismiss()
}.setPositiveButton("Yes") { dialog, which ->
adobeAnalytics2FAAction("Account/Settings/2FAopt-out")
listener.invoke()
dialog.dismiss()
}
builder.show()
}
else {
adobeAnalytics2FAAction("Account/Settings/2FAopt-in")
// turining on the mfa from off state
postTwoFA(true)
// Call the api to turn on the 2-fa
}
} else {
showChoiceAlert(getString(R.string.two_fa_off_title), getString(R.string.two_fa_off_message)) {
adobeAnalytics2FAAction("Account/Settings/2FAopt-out")
// Call the api to turn off the 2-fa
postTwoFA(false)
adobeAnalytics2FAAction("Account/Settings/2FAopt-out")
}

fun adobeAnalytics2FAAction(analyticActionString: String) {
val analytics2FA: MutableMap<String, String> = HashMap()
analytics2FA[_LOG_TAG_2FA] = analyticActionString
MobileCore.trackAction(
_LOG_TAG_2FA + "/" + analyticActionString,
analytics2FA
)
}
for Pageview implemented in JAVA 
val Utilize_2FA_TAG = "/2FA"val analytics2FA: MutableMap<String, String> = HashMap()
analytics2FA[Utilize_2FA_TAG] = TAG
MobileCore.trackState(Utilize_2FA_TAG, analytics2FA)

For Page view
companion object {
const val TAG = "HelpWith2fa"
}
val analytics2FA: MutableMap<String, String> = HashMap()
analytics2FA[Utilize_2FA_TAG] = TAG
MobileCore.trackState(Utilize_2FA_TAG, analytics2FA)
val Utilize_2FA_TAG = "/2FA"

 if possible to connect to discuss please let know. i need it be resolved ASAP.  I have given all the implementation i done which are not displaying. 

Jennifer_Dungan
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
August 7, 2022

Oh, this is a mobile app? 

 

I'm not overly familiar with Java code, but do you have any logs that you can check in the development environment? To make sure that this code is running as intended, with the values you expect at the correct times?

 

Do you have AEP Assurance included in your mobile app so that you can see what is happening using https://griffon.adobe.com/ 

 

If not, at the very least, have you run your app through a phone connected via a proxy to your computer running Charles or Fiddler to see if the calls are being made to Adobe? Or maybe using Charles running on your phone itself to capture the tracking calls?

At least with these you can see what is being sent and to where (even if you can't confirm how it's being processed.....