From e7156e7e6087c4887b2cf914e29ea084d12798f7 Mon Sep 17 00:00:00 2001 From: Sven Grossmann Date: Tue, 30 Jul 2024 20:12:30 +0200 Subject: [PATCH] Logs: Remove `grafana_explore_logs_log_details_clicked` event (#91171) --- public/app/features/logs/components/LogRow.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/public/app/features/logs/components/LogRow.tsx b/public/app/features/logs/components/LogRow.tsx index c8311c308d0..79bbdbe250c 100644 --- a/public/app/features/logs/components/LogRow.tsx +++ b/public/app/features/logs/components/LogRow.tsx @@ -115,13 +115,6 @@ class UnThemedLogRow extends PureComponent { return; } - reportInteraction('grafana_explore_logs_log_details_clicked', { - datasourceType: this.props.row.datasourceType, - type: this.state.showDetails ? 'close' : 'open', - logRowUid: this.props.row.uid, - app: this.props.app, - }); - this.setState((state) => { return { showDetails: !state.showDetails,