<?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: See User Activity by App and View in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/See-User-Activity-by-App-and-View/m-p/404471#M68167</link>
    <description>&lt;P&gt;Hi @tnesavich_splunk,&lt;BR /&gt;
Please look for Dashboard Examples App (&lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt;) to check the complete example of how to highlight some cell in the table with JS.&lt;/P&gt;

&lt;P&gt;Hope this helps!!!&lt;/P&gt;</description>
    <pubDate>Wed, 05 Jun 2019 14:04:54 GMT</pubDate>
    <dc:creator>VatsalJagani</dc:creator>
    <dc:date>2019-06-05T14:04:54Z</dc:date>
    <item>
      <title>See User Activity by App and View</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/See-User-Activity-by-App-and-View/m-p/404469#M68165</link>
      <description>&lt;P&gt;Please see accepted answer below for search that shows what apps and views (dashboards in those apps) users are going to, by user app and view.&lt;/P&gt;

&lt;P&gt;Please let me know if this is helpful or improvements you would suggest.&lt;/P&gt;

&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2019 22:24:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/See-User-Activity-by-App-and-View/m-p/404469#M68165</guid>
      <dc:creator>tnesavich_splun</dc:creator>
      <dc:date>2019-06-04T22:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: See User Activity by App and View</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/See-User-Activity-by-App-and-View/m-p/404470#M68166</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;This is a very interesting query actually. A while ago I was looking exactly for something like that.&lt;/P&gt;

&lt;P&gt;My suggestion would be to use&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| dedup app, user
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Instead of&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| dedup app
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This would allow you to see if more than one user accessed the same app. Like, If user A and user B accessed the search app in the last hour and you dedup by app, you will see just one user in your table. When you dedup by app and user you see both users listed, even if they used the same app.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 11:23:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/See-User-Activity-by-App-and-View/m-p/404470#M68166</guid>
      <dc:creator>alonsocaio</dc:creator>
      <dc:date>2019-06-05T11:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: See User Activity by App and View</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/See-User-Activity-by-App-and-View/m-p/404471#M68167</link>
      <description>&lt;P&gt;Hi @tnesavich_splunk,&lt;BR /&gt;
Please look for Dashboard Examples App (&lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt;) to check the complete example of how to highlight some cell in the table with JS.&lt;/P&gt;

&lt;P&gt;Hope this helps!!!&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 14:04:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/See-User-Activity-by-App-and-View/m-p/404471#M68167</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-05T14:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: See User Activity by App and View</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/See-User-Activity-by-App-and-View/m-p/404472#M68168</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Accepted Solution&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   index=_internal sourcetype="splunk_web_access" method="GET" status="200" user!=-
    | stats count latest(_time) as ViewTime by user app view
    | sort -count
    | eventstats sum(count) as countByApp list(view) as view list(count) as count list(ViewTime) as ViewTime by user app
    | convert timeformat="%a %m/%d/%Y %I:%M:%S %p" ctime(ViewTime)
    | dedup app
    | appendpipe [stats sum(count) as count by user | eval view = "Total Views"]
    | sort + user -countByApp
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;One suggestion is to play with the table format to highlight the total views by user as per the screenshot below:&lt;BR /&gt;
&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/7149iA9932A0E83016D64/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Here is an example of what your results might look like:&lt;BR /&gt;
&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/7150i86872D256E9B9CE2/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 14:36:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/See-User-Activity-by-App-and-View/m-p/404472#M68168</guid>
      <dc:creator>tnesavich_splun</dc:creator>
      <dc:date>2019-06-05T14:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: See User Activity by App and View</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/See-User-Activity-by-App-and-View/m-p/683080#M80432</link>
      <description>&lt;P&gt;Confirming this still works as of Splunk Cloud v9.0.2&lt;/P&gt;</description>
      <pubDate>Wed, 03 Apr 2024 18:31:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/See-User-Activity-by-App-and-View/m-p/683080#M80432</guid>
      <dc:creator>Smrtz</dc:creator>
      <dc:date>2024-04-03T18:31:08Z</dc:date>
    </item>
  </channel>
</rss>

