You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To maintain a clean events definition, I currently have only a few event_name values, each with specific properties as shown in the code below. However, I would like to generate a funnel report that not only tracks the event names (like click or view) but also leverages the event properties. For example, my click event could occur on different pages or steps of the onboarding process on my platform, and I'd like to track this granularity in the funnel.
Is it already possible to do this? If not, I would appreciate any guidance on how to achieve this functionality.
exportdeclare global {interfaceWindow{umami?: {track: <TextendsEventName>(eventName: T,eventData: EventDataMap[T])=>void;};}}typePage='x'|'y'|'z';typeAction='a'|'b'|'c'|'d';// Define allowed event namestypeEventName='c'|'v';// Map event names to specific propertiesinterfaceEventDataMap{click: {page: Page;type: Action;component_name: string;};view: {page: Page;step: 'global'|'checkout_success'|'checkout_cancel';component_type?: 'banner'|'modal';};}
The text was updated successfully, but these errors were encountered:
Hi,
To maintain a clean events definition, I currently have only a few
event_name
values, each with specific properties as shown in the code below. However, I would like to generate a funnel report that not only tracks the event names (likeclick
orview
) but also leverages the event properties. For example, myclick
event could occur on different pages or steps of the onboarding process on my platform, and I'd like to track this granularity in the funnel.Is it already possible to do this? If not, I would appreciate any guidance on how to achieve this functionality.
The text was updated successfully, but these errors were encountered: