Forum Discussion

JoyH's avatar
JoyH
Helper I
2 years ago
Solved

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 ...
  • Anonymous's avatar
    Anonymous
    2 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, AdditionalInfo

    Best Regards