export type TracerConfigType = { serviceName: string serverUrl: string agentVersion?: string agentName?: string transactionDurationThreshold?: number ignoreRequestUrls?: string[] isCatchResponseContent?: boolean isGlobalElementActionCatch?: boolean automaticStart?: boolean } export type UserContext = { id: string; username: string; email: string; } //手动标记element点 export const ELEMENT_ACTION_TASK_FALG = 'jad-mon-flag' //task key export const PAGE_CHANGE_TASK = 'pageChange_task' export const NETWORK_TASL = 'network_task' export const ELEMENT_ACTION_TASK = 'elementAction_task' export const CUSTOM_EVENT_TASK = 'customEvent_task'