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 年前檢視次數 1029 次
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.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南