Hi everyone!
We’re using Segment and Amplitude for our product analytics in a single page application.
I’d like to separate somehow our actions based events (clicks, submits, hover...) from the navigational ones (when the route changes) to be able to leverage the path finder analysis and other analysis where we’re just trying to figure out what are the most common navigational patterns.
Ee’d like to make it pretty easy to reverse engineer paths to a certain Goal by specifying the Goal event as the final one and then analyse the previous navigational events
So, are there any best practices around this topic or should we use a custom event property like type or category like this:
- Clicked Menu Item { item: “home”, category: “click” }
- Viewed Homepage { category: “view” }
- Clicked Menu Item { item: “pricing”, category: “click” }
- Viewed Pricing Page { category: “view” }
- Clicked Menu Item { item: “cart”, category: “click” }
- Viewed Cart Page { category: “view” }
- Clicked Add To Cart { category: “click” }
...and then manually filter events by category=”navigation” when using the Pathfinder for example ? Without the concept of navigational vs actions events it’s pretty hard to use the Pathfinder, for example, because all types of events get mashed in it.
Also, since Amplitude has events categorisation how does that play with everything I mentioned above?
Best regards,
Luka