Forum Discussion
JoyH
2 years agoHelper I
Log Analytics KQL - How do I track interaction?
Hi, I have a requirement to see which slicers and visual users are interacting with. I have Log Analytics set up for my workspace and I am able to see a record for each dashboard visual load ...
- Anonymous2 years ago
Hi JoyH ,
Please try the following sentences:
Sample Log Analytics KQL queries
let dashboardName = "YourDashboardname"; PowerBI | where OperationName == "VisualContainer" or OperationName == "Slicer" | where ReportName == dashboardName | where TimeGenerated > ago(30d) | project TimeGenerated, OperationName, UserName, ObjectType, ObjectName, AdditionalInfoBest Regards
Anonymous
2 years agoNot applicable
Hi JoyH ,
Please try the following sentences:
Sample Log Analytics KQL queries
let dashboardName = "YourDashboardname";
PowerBI
| where OperationName == "VisualContainer" or OperationName == "Slicer"
| where ReportName == dashboardName
| where TimeGenerated > ago(30d)
| project TimeGenerated, OperationName, UserName, ObjectType, ObjectName, AdditionalInfo
Best Regards