Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
We have been using on-premises PowerBI satisfactorily for several years now. However, we would like to be able to monitor the use of our reports that consist of multiple tabs. And therein lies a challenge: we can see who opens a report and when, but not user behaviour within that report.
Is there anything we can do within Power BI Report Server to properly monitor the usage of our reports, or is that only possible in the Power BI Service with Power BI Activity Logs & Azure Log Analytics?
Solved! Go to Solution.
Hi @mmossel ,
The Power BI Reporting Server is located on the SQL instance (same as normal SSRS) and you can start SSMS and access all the functions and information stored in the database.
Report Server ExecutionLog and the ExecutionLog3 View can give you relevant execution information.
Try as below:
Use ReportServer
select * from ExecutionLog3 order by TimeStart DESC
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @mmossel ,
The Power BI Reporting Server is located on the SQL instance (same as normal SSRS) and you can start SSMS and access all the functions and information stored in the database.
Report Server ExecutionLog and the ExecutionLog3 View can give you relevant execution information.
Try as below:
Use ReportServer
select * from ExecutionLog3 order by TimeStart DESC
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @v-henryk-mstf,
Thank you for your reply. There is one activity we would specifically like to log, which is the opening of specific pages within a report. Can we track such user behaviour to understand which pages are used the most?
Best regards,