From ba5972fa6be072cab26a407088c4798a709d8505 Mon Sep 17 00:00:00 2001 From: Rohan Agarwal Date: Sun, 16 Nov 2025 12:33:03 -0800 Subject: [PATCH] feat(explorer): copy for metric viewing tool --- static/app/views/seerExplorer/utils.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) 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}`; + }, }; /**