From 58c6f321fab936b78c831ca516785c08c5cabf3a Mon Sep 17 00:00:00 2001 From: Sander Philipse Date: Fri, 24 Jan 2025 17:53:35 +0100 Subject: [PATCH] [ES3] Fix telemetry ID for indices --- .../public/components/create_index/create_index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/solutions/search/plugins/search_indices/public/components/create_index/create_index.tsx b/x-pack/solutions/search/plugins/search_indices/public/components/create_index/create_index.tsx index 2266cc4b6c5bc..0626aea86d6f8 100644 --- a/x-pack/solutions/search/plugins/search_indices/public/components/create_index/create_index.tsx +++ b/x-pack/solutions/search/plugins/search_indices/public/components/create_index/create_index.tsx @@ -112,8 +112,8 @@ export const CreateIndex = ({ indicesData }: CreateIndexProps) => { changeWorkflowId={(workflowId: WorkflowId) => { setSelectedWorkflowId(workflowId); usageTracker.click([ - AnalyticsEvents.startCreateIndexWorkflowSelect, - `${AnalyticsEvents.startCreateIndexWorkflowSelect}_${workflowId}`, + AnalyticsEvents.createIndexWorkflowSelect, + `${AnalyticsEvents.createIndexWorkflowSelect}_${workflowId}`, ]); }} selectedWorkflow={workflow}