profilingAnalyticsEvents.tsx 612 B

12345678910111213141516171819
  1. type ProfilingPrefix = 'profiling';
  2. type ProfilingViews =
  3. | 'landing'
  4. | 'profile_summary'
  5. | 'profile_details'
  6. | 'profile_flamegraph';
  7. type EventKey = `${ProfilingPrefix}_views.${ProfilingViews}`;
  8. export type ProfilingEventParameters = {
  9. [K in EventKey]: {};
  10. };
  11. export const profilingEventMap: Record<EventKey, string> = {
  12. 'profiling_views.landing': 'Profiling Views: Landing',
  13. 'profiling_views.profile_flamegraph': 'Profiling Views: Flamegraph',
  14. 'profiling_views.profile_summary': 'Profiling Views: Profile Summary',
  15. 'profiling_views.profile_details': 'Profiling Views: Profile Details',
  16. };