|
@@ -16,11 +16,14 @@ type PageLayoutParams = {
|
|
|
export type PerformanceEventParameters = {
|
|
|
'performance_views.all_events.open_in_discover': {};
|
|
|
'performance_views.anomalies.anomalies_tab_clicked': PageLayoutParams;
|
|
|
+ 'performance_views.change_view': {
|
|
|
+ project_platforms: string;
|
|
|
+ view_name: string;
|
|
|
+ };
|
|
|
'performance_views.create_sample_transaction': SampleTransactionParam;
|
|
|
'performance_views.event_details.anchor_span': {
|
|
|
span_id: string;
|
|
|
};
|
|
|
-
|
|
|
'performance_views.event_details.filter_by_op': {
|
|
|
operation: string;
|
|
|
};
|
|
@@ -34,6 +37,11 @@ export type PerformanceEventParameters = {
|
|
|
'performance_views.filter_dropdown.selection': {
|
|
|
action: string;
|
|
|
};
|
|
|
+ 'performance_views.landingv2.display.filter_change': {
|
|
|
+ field: string;
|
|
|
+ max_value: number;
|
|
|
+ min_value: number;
|
|
|
+ };
|
|
|
'performance_views.landingv2.transactions.sort': {
|
|
|
direction?: string;
|
|
|
field?: string;
|
|
@@ -67,6 +75,9 @@ export type PerformanceEventParameters = {
|
|
|
is_on_metrics: boolean;
|
|
|
};
|
|
|
'performance_views.overview.cellaction': {action?: string};
|
|
|
+ 'performance_views.overview.change_chart': {
|
|
|
+ metric: string;
|
|
|
+ };
|
|
|
'performance_views.overview.navigate.summary': {
|
|
|
project_platforms: string;
|
|
|
};
|
|
@@ -90,6 +101,7 @@ export type PerformanceEventParameters = {
|
|
|
sort_column?: string;
|
|
|
};
|
|
|
'performance_views.spans.spans_tab_clicked': PageLayoutParams;
|
|
|
+ 'performance_views.summary.create_alert_clicked': {};
|
|
|
'performance_views.summary.tag_explorer.cell_action': {};
|
|
|
'performance_views.summary.tag_explorer.change_page': {};
|
|
|
'performance_views.summary.tag_explorer.sort': {
|
|
@@ -120,6 +132,19 @@ export type PerformanceEventParameters = {
|
|
|
transaction: string;
|
|
|
};
|
|
|
'performance_views.trace_view.view': {};
|
|
|
+ 'performance_views.transactionEvents.cellaction': {
|
|
|
+ action: string;
|
|
|
+ };
|
|
|
+ 'performance_views.transactionEvents.display_filter_dropdown.selection': {
|
|
|
+ action: string;
|
|
|
+ };
|
|
|
+ 'performance_views.transactionEvents.ops_filter_dropdown.selection': {
|
|
|
+ action: string;
|
|
|
+ };
|
|
|
+ 'performance_views.transactionEvents.sort': {
|
|
|
+ direction?: string;
|
|
|
+ field?: string;
|
|
|
+ };
|
|
|
'performance_views.transaction_summary.change_chart_display': {
|
|
|
from_chart: string;
|
|
|
to_chart: string;
|
|
@@ -156,8 +181,11 @@ export const performanceEventMap: Record<PerformanceEventKey, string | null> = {
|
|
|
'performance_views.tour.start': 'Performance Views: Tour Start',
|
|
|
'performance_views.tour.advance': 'Performance Views: Tour Advance',
|
|
|
'performance_views.tour.close': 'Performance Views: Tour Close',
|
|
|
+ 'performance_views.change_view': 'Performance Views: Change View',
|
|
|
'performance_views.landingv2.transactions.sort':
|
|
|
'Performance Views: Landing Transactions Sorted',
|
|
|
+ 'performance_views.landingv2.display.filter_change':
|
|
|
+ 'Performance Views: Landing v2 Display Filter Change',
|
|
|
'performance_views.overview.navigate.summary':
|
|
|
'Performance Views: Overview view summary',
|
|
|
'performance_views.overview.cellaction': 'Performance Views: Cell Action Clicked',
|
|
@@ -170,10 +198,13 @@ export const performanceEventMap: Record<PerformanceEventKey, string | null> = {
|
|
|
'performance_views.landingv3.display_change': 'Performance Views: Switch Landing Tabs',
|
|
|
'performance_views.landingv3.table_pagination':
|
|
|
'Performance Views: Landing Page Transactions Table Page Changed',
|
|
|
+ 'performance_views.overview.change_chart': 'Performance Views: Change Overview Chart',
|
|
|
'performance_views.span_summary.change_chart':
|
|
|
'Performance Views: Span Summary displayed chart changed',
|
|
|
'performance_views.spans.change_op': 'Performance Views: Change span operation name',
|
|
|
'performance_views.spans.change_sort': 'Performance Views: Change span sort column',
|
|
|
+ 'performance_views.summary.create_alert_clicked':
|
|
|
+ 'Performance Views: Create alert clicked',
|
|
|
'performance_views.summary.tag_explorer.tag_value':
|
|
|
'Performance Views: Tag Explorer Value Clicked',
|
|
|
'performance_views.summary.tag_explorer.cell_action':
|
|
@@ -226,6 +257,14 @@ export const performanceEventMap: Record<PerformanceEventKey, string | null> = {
|
|
|
'Performance Views: Event Details span anchored',
|
|
|
'performance_views.event_details.json_button_click':
|
|
|
'Performance Views: Event Details JSON button clicked',
|
|
|
+ 'performance_views.transactionEvents.cellaction':
|
|
|
+ 'Performance Views: Transaction Events Tab Cell Action Clicked',
|
|
|
+ 'performance_views.transactionEvents.sort':
|
|
|
+ 'Performance Views: Transaction Events Tab Sorted',
|
|
|
+ 'performance_views.transactionEvents.display_filter_dropdown.selection':
|
|
|
+ 'Performance Views: Transaction Events Display Filter Dropdown',
|
|
|
+ 'performance_views.transactionEvents.ops_filter_dropdown.selection':
|
|
|
+ 'Performance Views: Transaction Events Ops Breakdown Filter Dropdown',
|
|
|
'performance_views.transaction_summary.view':
|
|
|
'Performance Views: Transaction Summary View',
|
|
|
'performance_views.filter_dropdown.selection': 'Performance Views: Filter Dropdown',
|