<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Log Analytics KQL  - How do I track interaction? in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Log-Analytics-KQL-How-do-I-track-interaction/m-p/3769842#M50589</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/333688"&gt;@JoyH&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please try the following sentences:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/transform-model/log-analytics/desktop-log-analytics-configure#sample-log-analytics-kql-queries" target="_self"&gt;Sample Log Analytics KQL queries &lt;/A&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;let dashboardName = "YourDashboardname";
PowerBI
| where OperationName == "VisualContainer" or OperationName == "Slicer"
| where ReportName == dashboardName
| where TimeGenerated &amp;gt; ago(30d)
| project TimeGenerated, OperationName, UserName, ObjectType, ObjectName, AdditionalInfo&lt;/LI-CODE&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
    <pubDate>Mon, 18 Mar 2024 02:37:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-03-18T02:37:56Z</dc:date>
    <item>
      <title>Log Analytics KQL  - How do I track interaction?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Log-Analytics-KQL-How-do-I-track-interaction/m-p/3767463#M50527</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a requirement to see which slicers and visual users are interacting with.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have Log Analytics set up for my workspace and I am able to see a record for each dashboard visual load (KQL below). I'm importing this data into a PBIX and modeling it with report.JSON to get the names &amp;amp; descriptions of all the visuals.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My next step is to somehow figure out if a user changed a slicer or drilled into a visual or selected a value.&amp;nbsp; I'm hoping there is a better way to do this than comparing the DAX/EventText.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If anyone knows, please reply. TIA!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;PowerBIDatasetsWorkspace
| where TimeGenerated &amp;gt; ago(30d)
| where OperationName == ""QueryEnd""
| where ArtifactName == ""Dashboard_PRODUCTION""
| extend ParsedContext = parse_json(ApplicationContext)
| extend ParsedIdentity = parse_json(Identity)
| project ReportId = ParsedContext.Sources[0].ReportId, VisualId = ParsedContext.Sources[0].VisualId, TimeGenerated, EventText, ParsedIdentity.effectiveClaims.upn, Role = tostring(ParsedIdentity.effectiveClaims.roles[0])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JoyH_0-1710530415144.png" style="width: 921px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1060993iA0E828CBA17297C3/image-dimensions/921x509?v=v2" width="921" height="509" role="button" title="JoyH_0-1710530415144.png" alt="JoyH_0-1710530415144.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2024 19:23:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Log-Analytics-KQL-How-do-I-track-interaction/m-p/3767463#M50527</guid>
      <dc:creator>JoyH</dc:creator>
      <dc:date>2024-03-15T19:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: Log Analytics KQL  - How do I track interaction?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Log-Analytics-KQL-How-do-I-track-interaction/m-p/3769842#M50589</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/333688"&gt;@JoyH&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please try the following sentences:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/transform-model/log-analytics/desktop-log-analytics-configure#sample-log-analytics-kql-queries" target="_self"&gt;Sample Log Analytics KQL queries &lt;/A&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;let dashboardName = "YourDashboardname";
PowerBI
| where OperationName == "VisualContainer" or OperationName == "Slicer"
| where ReportName == dashboardName
| where TimeGenerated &amp;gt; ago(30d)
| project TimeGenerated, OperationName, UserName, ObjectType, ObjectName, AdditionalInfo&lt;/LI-CODE&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2024 02:37:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Log-Analytics-KQL-How-do-I-track-interaction/m-p/3769842#M50589</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-18T02:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: Log Analytics KQL  - How do I track interaction?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Log-Analytics-KQL-How-do-I-track-interaction/m-p/3794645#M51079</link>
      <description>&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2024 15:38:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Log-Analytics-KQL-How-do-I-track-interaction/m-p/3794645#M51079</guid>
      <dc:creator>JoyH</dc:creator>
      <dc:date>2024-03-27T15:38:33Z</dc:date>
    </item>
  </channel>
</rss>

