diff --git a/static/app/views/seerExplorer/utils.tsx b/static/app/views/seerExplorer/utils.tsx index b9b518b7b7d81b..8fd68596254ad4 100644 --- a/static/app/views/seerExplorer/utils.tsx +++ b/static/app/views/seerExplorer/utils.tsx @@ -19,7 +19,7 @@ const TOOL_FORMATTERS: Record = { telemetry_index_dependencies: (args, isLoading) => { const title = args.title || 'item'; - const truncatedTitle = title.length > 50 ? title.slice(0, 50) + '...' : title; + const truncatedTitle = title.length > 75 ? title.slice(0, 75) + '...' : title; return isLoading ? `Tracing the flow of ${truncatedTitle}...` : `Traced the flow of ${truncatedTitle}`; @@ -29,6 +29,11 @@ const TOOL_FORMATTERS: Record = { const question = args.question || 'query'; return isLoading ? `Googling '${question}'...` : `Googled '${question}'`; }, + + trace_explorer_query: (args, isLoading) => { + const question = args.question || 'spans'; + return isLoading ? `Querying spans: '${question}'` : `Queried spans: '${question}'`; + }, }; /**