diff --git a/static/app/views/seerExplorer/utils.tsx b/static/app/views/seerExplorer/utils.tsx index a96a7e6315a797..008eac356d565b 100644 --- a/static/app/views/seerExplorer/utils.tsx +++ b/static/app/views/seerExplorer/utils.tsx @@ -169,6 +169,14 @@ const TOOL_FORMATTERS: Record = { ? `Sampling profile ${shortProfileId}...` : `Sampled profile ${shortProfileId}`; }, + + get_metric_attributes: (args, isLoading) => { + const metricName = args.metric_name || ''; + const timestamp = args.timestamp || ''; + return isLoading + ? `Double-clicking on metric '${metricName}' at ${timestamp}...` + : `Double-clicked on metric '${metricName}' at ${timestamp}`; + }, }; /**