How to get QuickSight dashboard usage and access data to analyze metrics on the dashboard itself?

0

We require QuickSight dashboard usage and access data to analyze metrics on the dashboard itself and send out reports scheduled to send automatically via email.

Can anyone help us to get usage and access data from Quicksight and setup the dashboard usage and access summary?

  • You can collect all quicksight events via cloudtrail and save into S3. Once the data is written to S3, either custom program ( using python) or Athena can be used to filter quicksight events and understand the dashboard usage and summary. This is a custom solution followed by many organization. For filtering only specific region, you need to create trail via cli .

質問済み 1年前1030ビュー
1回答
1

I found a (Japanese) site that might answer your question. https://dev.classmethod.jp/articles/visualize-amazon-quicksight-api-logs-with-quicksight/

The steps are below:

  1. Enable CloudTrail
  2. QuickSight permission settings for Athena
  3. Create Athena Table
  • You can create a table from the CloudTrail console ( I used to run a query to create a table from the Athena console ).
  1. Create Dataset on QuickSight
SELECT
  date
  ,eventtime
  ,eventname
  ,useridentity.username AS username 
  ,json_extract_scalar( serviceeventdetails, '$.eventResponseDetails.dashboardDetails.dashboardName' ) AS dashboardName
  ,json_extract_scalar( serviceeventdetails, '$.eventResponseDetails.analysisDetails.analysisName' ) AS analysisName
FROM "logs"."cloudtrail_logs"
WHERE
  region = 'ap-northeast-1'
  AND eventsource = 'quicksight.amazonaws.com'
  AND eventname in ( 'GetDashboard','GetAnalysis')
;
  1. Create a graph
  • I have graphed the number of users by date as in the image below the number of users by date
profile picture
ARBR
回答済み 1年前
profile picture
エキスパート
iwasa
レビュー済み 1年前
  • Good solution and we also followed the same but instead of Athena, we used our custom spark on EMR and developed this as we used EMR for our big data processing.

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ