diff --git a/public/app/plugins/panel/dashlist/DashListItem.tsx b/public/app/plugins/panel/dashlist/DashListItem.tsx index cbb093c51f4..01bdf42e942 100644 --- a/public/app/plugins/panel/dashlist/DashListItem.tsx +++ b/public/app/plugins/panel/dashlist/DashListItem.tsx @@ -30,7 +30,10 @@ export function DashListItem({ const shortTitle = truncate(dashboard.name, { length: 40, omission: '…' }); const onCardLinkClick = () => { - reportInteraction('grafana_recently_viewed_dashboards_click_card', { + reportInteraction('grafana_browse_dashboards_page_click_list_item', { + itemKind: dashboard.kind, + source: 'browseDashboardsPage_BrowseView', + uid: dashboard.uid, cardOrder: order, }); };