Solved

How do I send event Properties?


Userlevel 2
Badge

I use the following code in my Flutter app / Dart:

   Amplitude.getInstance().setUserId(userID, startNewSession: false);

Amplitude.getInstance().logEvent(actionName,
eventProperties: {
'pageName': pageName
}
);

When I check the Event Stream, I see the pageName property as an Event Property.

But when I attempt to create a chart to GroupBy page Name for a given actionName...I don’t have that option.

icon

Best answer by Saish Redkar 24 May 2022, 00:28

View original

3 replies

Userlevel 2
Badge

Here is what I see currently (how can I edit my post?)

 

 

Userlevel 7
Badge +10

Hey @assembly 

From what I understood from a previous post, I think querying on “Any Event” with event properties is possible only if you are on a certain plan.

Only Enterprise, Growth, or Scholarship plans have the ability to filter/group by event properties on aggregated events like “Any Event” as per Belinda’s reply on this post.

I’m not 100% sure about this since this post is almost a year old.

Can you check if you are able to see event properties under the actual event rather than “Any Event”?

Userlevel 2
Badge

Yes this corrected it. 

Reply