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 年前1032 查看次数
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.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则