Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS Pinpoint - Amplify - Android - Custom events are recorded in the console but it's not possible to filter by them

I have added AWS Pinpoint Analytics through Amplify in my Android application. I am recording custom events based on the official tutorial:

val event: AnalyticsEvent = AnalyticsEvent.builder()
        .name("PasswordReset")
        .addProperty("Channel", "SMS")
        .addProperty("Successful", true)
        .addProperty("ProcessDuration", 792)
        .addProperty("UserAge", 120.3)
        .build()

Amplify.Analytics.recordEvent(event)

The events are being recorded in the AWS Pinpoint console:

Unfortunately, it is not possible to filter by specific event (Session Start and Session End are the only possible filters):

How to show counts for each custom event I have created? How could I find properties values from each recorded event? If that is not possible then there is no point in creating custom events.

like image 716
MiHu Avatar asked Sep 16 '25 14:09

MiHu


1 Answers

In this case patience was the key. After about an hour the filter for the custom event appeared.

like image 103
MiHu Avatar answered Sep 19 '25 06:09

MiHu