Forum Discussion
Report Server - Report Usage Statistics
- Anonymous8 years ago
shera276 The Power BI Report Server sits on a SQL instance (the same as normal SSRS) you have access to all the capabilities and information stored in the database. the view "dbo.ExecutionLog3" will provide you the metrics that you are looking for.
shera276 The Power BI Report Server sits on a SQL instance (the same as normal SSRS) you have access to all the capabilities and information stored in the database. the view "dbo.ExecutionLog3" will provide you the metrics that you are looking for.
- hernan_russy8 years agoRegular Visitor
Hi shera276: I have the same question. Did you get the required audit info from this view?
Thanks
- Anonymous8 years agoNot applicable
hernan_russy The report server won't mimc the same metrics that you see in Power BI in that view. It will essentially provide you with who or what process executed the report. I have not tested this completely with Power BI Desktop executions, but my understanding is that this will be tracked in the same fashion.
- shera2768 years agoKudo Kingpin
Hi hernan_russy - Until this is available in Report Server, I created reports based on the following suggestion by another PowerBI users in the community:
'The Power BI Report Server sits on a SQL instance (the same as normal SSRS) you have access to all the capabilities and information stored in the database. the view "dbo.ExecutionLog3" will provide you the metrics that you are looking for.'
So I connected to the dbo.ExecutionLog3 view from our SQL database and was able to create some usage stats.
- DaveW8 years agoAdvocate II
It would be good to have Usage Statistics function in Report Server
I've created the same process, I pull the data from the log files into a table on a daily basis via a SP
Then I can create reports in SSRS or Power BI by date by user, or even which reports have the longest rendering time
SELECT Substring (el2.username,4,20) as Logs_User, el2.ReportPath as Logs_ReportPath, CONVERT(varchar,el2.TimeStart,111) as Logs_Date, el2.TimeStart as Logs_TimeStart, el2.TimeEnd as Logs_TimeEnd, el2.[Status] as Logs_Status FROM Portal.dbo.ExecutionLog2 el2 --Portal is the name of my Report Server where ReportPath not like '/02%' and Status = 'rsSuccess' and ReportPath != 'Unknown' and CONVERT(varchar,el2.TimeStart,111) = CONVERT(varchar,getdate()-1,111) and username not like 'NT SERVICE%' and Format not like 'E%' and ByteCount != 0
hope this helps
cheers,
Dave