|
@@ -10,6 +10,7 @@ type PerformanceTourParams = {
|
|
};
|
|
};
|
|
|
|
|
|
export type PerformanceEventParameters = {
|
|
export type PerformanceEventParameters = {
|
|
|
|
+ 'performance_views.all_events.open_in_discover': {};
|
|
'performance_views.create_sample_transaction': SampleTransactionParam;
|
|
'performance_views.create_sample_transaction': SampleTransactionParam;
|
|
'performance_views.landingv2.transactions.sort': {
|
|
'performance_views.landingv2.transactions.sort': {
|
|
direction?: string;
|
|
direction?: string;
|
|
@@ -52,6 +53,12 @@ export type PerformanceEventParameters = {
|
|
'performance_views.spans.change_sort': {
|
|
'performance_views.spans.change_sort': {
|
|
sort_column?: string;
|
|
sort_column?: string;
|
|
};
|
|
};
|
|
|
|
+ 'performance_views.tags.change_tag': {
|
|
|
|
+ from_tag: string;
|
|
|
|
+ is_other_tag: boolean;
|
|
|
|
+ to_tag: string;
|
|
|
|
+ };
|
|
|
|
+ 'performance_views.tags.jump_to_release': {};
|
|
'performance_views.team_key_transaction.set': {
|
|
'performance_views.team_key_transaction.set': {
|
|
action: string;
|
|
action: string;
|
|
};
|
|
};
|
|
@@ -59,6 +66,13 @@ export type PerformanceEventParameters = {
|
|
'performance_views.tour.close': PerformanceTourParams;
|
|
'performance_views.tour.close': PerformanceTourParams;
|
|
'performance_views.tour.start': {};
|
|
'performance_views.tour.start': {};
|
|
'performance_views.trace_view.view': {};
|
|
'performance_views.trace_view.view': {};
|
|
|
|
+ 'performance_views.transaction_summary.change_chart_display': {
|
|
|
|
+ from_chart: string;
|
|
|
|
+ to_chart: string;
|
|
|
|
+ };
|
|
|
|
+ 'performance_views.transaction_summary.status_breakdown_click': {
|
|
|
|
+ status: string;
|
|
|
|
+ };
|
|
'performance_views.trends.change_duration': {
|
|
'performance_views.trends.change_duration': {
|
|
value: string;
|
|
value: string;
|
|
widget_type: string;
|
|
widget_type: string;
|
|
@@ -102,6 +116,16 @@ export const performanceEventMap: Record<PerformanceEventKey, string | null> = {
|
|
'performance_views.overview.search': 'Performance Views: Transaction overview search',
|
|
'performance_views.overview.search': 'Performance Views: Transaction overview search',
|
|
'performance_views.vital_detail.view': 'Performance Views: Vital Detail viewed',
|
|
'performance_views.vital_detail.view': 'Performance Views: Vital Detail viewed',
|
|
'performance_views.trace_view.view': 'Performance Views: Trace View viewed',
|
|
'performance_views.trace_view.view': 'Performance Views: Trace View viewed',
|
|
|
|
+ 'performance_views.transaction_summary.change_chart_display':
|
|
|
|
+ 'Performance Views: Transaction Summary chart display changed',
|
|
|
|
+ 'performance_views.transaction_summary.status_breakdown_click':
|
|
|
|
+ 'Performance Views: Transaction Summary status breakdown option clicked',
|
|
|
|
+ 'performance_views.all_events.open_in_discover':
|
|
|
|
+ 'Performance Views: All Events page open in Discover button clicked',
|
|
|
|
+ 'performance_views.tags.change_tag':
|
|
|
|
+ 'Performance Views: Tags Page changed selected tag',
|
|
|
|
+ 'performance_views.tags.jump_to_release':
|
|
|
|
+ 'Performance Views: Tags Page link to release in table clicked',
|
|
'performance_views.team_key_transaction.set':
|
|
'performance_views.team_key_transaction.set':
|
|
'Performance Views: Set Team Key Transaction',
|
|
'Performance Views: Set Team Key Transaction',
|
|
'performance_views.trends.widget_interaction':
|
|
'performance_views.trends.widget_interaction':
|