AWS Pinpoint - Amplify - Android - 自定义事件记录在控制台中,但无法按它们过滤

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

我已经通过 Amplify 在我的 Android 应用程序中添加了 AWS Pinpoint Analytics。我正在根据 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)

正在 AWS Pinpoint 控制台中记录事件:

遗憾的是,无法按特定事件进行过滤(会话开始和会话结束是唯一可能的过滤器):

如何显示我创建的每个自定义事件的计数?我如何从每个记录的事件中找到属性值?如果那不可能,那么创建自定义事件就没有意义了。

在这种情况下,耐心是关键。大约一个小时后,自定义事件的过滤器出现。