<?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: Alternative to Auditing for Report Usage in SAS Viya Visual Analytics in SAS Viya</title>
    <link>https://communities.sas.com/t5/SAS-Viya/Alternative-to-Auditing-for-Report-Usage-in-SAS-Viya-Visual/m-p/971196#M2922</link>
    <description>&lt;P&gt;In SAS Viya 3.5 the activity entries are not available.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See this article&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Auditing-Report-Actions-in-SAS-Viya-3-x/ta-p/959712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/Auditing-Report-Actions-in-SAS-Viya-3-x/ta-p/959712&lt;/A&gt;&amp;nbsp;by for more details on auditing report operations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or go the way as outline by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/78975"&gt;@gwootton&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;</description>
    <pubDate>Mon, 21 Jul 2025 08:22:23 GMT</pubDate>
    <dc:creator>BrunoMueller</dc:creator>
    <dc:date>2025-07-21T08:22:23Z</dc:date>
    <item>
      <title>Alternative to Auditing for Report Usage in SAS Viya Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Viya/Alternative-to-Auditing-for-Report-Usage-in-SAS-Viya-Visual/m-p/970868#M2918</link>
      <description>&lt;P&gt;I'm looking for statistics on the usage of reports in SAS Viya Visual Analytics. I understand that this can be obtained by enabling auditing, but I was wondering: is it also possible to extract this information from the &lt;CODE&gt;sas visualanalytics&lt;/CODE&gt; log file, or from any other log files?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 13:33:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/Alternative-to-Auditing-for-Report-Usage-in-SAS-Viya-Visual/m-p/970868#M2918</guid>
      <dc:creator>sergie89</dc:creator>
      <dc:date>2025-07-16T13:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to Auditing for Report Usage in SAS Viya Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Viya/Alternative-to-Auditing-for-Report-Usage-in-SAS-Viya-Visual/m-p/970869#M2919</link>
      <description>&lt;P&gt;Please provide the version information on SAS Viya you are interessted in.&lt;/P&gt;
&lt;P&gt;As of SAS Viya 20nn.nn there are no longer traditional log files.&lt;/P&gt;
&lt;P&gt;The information on which reports have been accessed, can be returned using the sas-viya audit list-activities command (tested with Stable 2025.06).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is an example:&lt;/P&gt;
&lt;PRE&gt;sas-viya --output json audit list-activities --application-contains Visual --sort-by timeStamp --limit 100 --action read --user-interaction-contains Open&lt;/PRE&gt;
&lt;P&gt;The command will return JSON output. A activity entry will look like below.&lt;/P&gt;
&lt;PRE&gt;    {
      "action": "read",
      "administrativeAction": false,
      "application": "SAS® Visual Analytics",
      "correlator": "dfd7180f-c19f-4dd8-847a-2b35f1dbebc3",
      "httpContext": {
        "method": "GET",
        "statusCode": 200
      },
      "id": "7fca62e6-ccc1-4aba-8897-2d10efdffb1a",
      "links": [
        {
          "href": "/audit/activities/7fca62e6-ccc1-4aba-8897-2d10efdffb1a",
          "method": "GET",
          "rel": "self",
          "type": "application/vnd.sas.audit.activity",
          "uri": "/audit/activities/7fca62e6-ccc1-4aba-8897-2d10efdffb1a"
        }
      ],
      "objectName": "cars-simple",
      "objectType": "report",
      "properties": {
        "referringApplication": "SASVisualAnalytics"
      },
      "references": [],
      "secure": true,
      "serviceName": "reports",
      "sessionId": "a8bbbb4b-d8f0-4e38-ab06-df83840d430b",
      "state": "success",
      "timeStamp": "2025-07-16T13:43:50.037Z",
      "type": "resource",
      "uri": "/reports/reports/130a9b58-d93b-4f24-8478-ff02d416ff3b/content",
      "user": "sean",
      "userInteraction": "Open report cars-simple",
      "version": 8
    }
&lt;/PRE&gt;
&lt;P&gt;A non admin user will only see his entries.&lt;/P&gt;
&lt;P&gt;A SAS admin will see all entries&lt;/P&gt;
&lt;P&gt;There are many more options to the mentioned command. For instance to select a specifc time window using --after and|or --before. Note the --limit option, by default only 50 entries are returned.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 14:16:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/Alternative-to-Auditing-for-Report-Usage-in-SAS-Viya-Visual/m-p/970869#M2919</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2025-07-16T14:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to Auditing for Report Usage in SAS Viya Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Viya/Alternative-to-Auditing-for-Report-Usage-in-SAS-Viya-Visual/m-p/970871#M2920</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32"&gt;@BrunoMueller&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We're still on version V.03.05. It's quite an old version by now.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jul 2025 14:23:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/Alternative-to-Auditing-for-Report-Usage-in-SAS-Viya-Visual/m-p/970871#M2920</guid>
      <dc:creator>sergie89</dc:creator>
      <dc:date>2025-07-16T14:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to Auditing for Report Usage in SAS Viya Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Viya/Alternative-to-Auditing-for-Report-Usage-in-SAS-Viya-Visual/m-p/970912#M2921</link>
      <description>You could look at the /var/log/httpd/ssl_access_log for /reports/reports/*/content</description>
      <pubDate>Wed, 16 Jul 2025 20:31:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/Alternative-to-Auditing-for-Report-Usage-in-SAS-Viya-Visual/m-p/970912#M2921</guid>
      <dc:creator>gwootton</dc:creator>
      <dc:date>2025-07-16T20:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to Auditing for Report Usage in SAS Viya Visual Analytics</title>
      <link>https://communities.sas.com/t5/SAS-Viya/Alternative-to-Auditing-for-Report-Usage-in-SAS-Viya-Visual/m-p/971196#M2922</link>
      <description>&lt;P&gt;In SAS Viya 3.5 the activity entries are not available.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See this article&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Auditing-Report-Actions-in-SAS-Viya-3-x/ta-p/959712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/Auditing-Report-Actions-in-SAS-Viya-3-x/ta-p/959712&lt;/A&gt;&amp;nbsp;by for more details on auditing report operations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or go the way as outline by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/78975"&gt;@gwootton&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jul 2025 08:22:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/Alternative-to-Auditing-for-Report-Usage-in-SAS-Viya-Visual/m-p/971196#M2922</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2025-07-21T08:22:23Z</dc:date>
    </item>
  </channel>
</rss>

