| Thank you for surfacing the need for a better demo and examples. > I'm currently managing a team using Google Analytics, Facebook Pixel and Hotjar. Avo is optimized for event based analytics, such as when people send events with metadata into Amplitude, Mixpanel, Segment or into custom pipelines. Are you sending custom events into the platforms you mentioned, and sending metadata along with the events? > From what I understand, I can use Avo to setup flows that I want to watch (like a sales conversion funnel) and make sure that the analytics tags are properly implemented across all pages of the funnel. You can use Avo to define the structure of the events that you want to send at each step in that flow. From those definitions, developers can generate code that validates that the event structures are correct. What I mean by event structures is for example event names, which properties should be required on those events, what those properties should be named, and which type their values should be. An example event could be: event name: "Checkout Completed" properties and their values: {"Number of Items": 2, "Amount": 100.00, "Currency": "USD"} > In the case that the sales funnel changes and a new page is added, do I need to remember to update Avo with the change? If your data should change along with the sales funnel change, then you should update Avo and then your code. |