<?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: search to get an overview of all dashboards and apps with  authorizations in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/search-to-get-an-overview-of-all-dashboards-and-apps-with/m-p/556196#M157936</link>
    <description>&lt;P&gt;You can get a list of apps and dashboards using REST commands, but it will come with user names rather than role names.&amp;nbsp; You'll have to correlate with your user list to get roles.&lt;/P&gt;&lt;P&gt;Try&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rest /servicesNS/-/-/data/ui/views

| rest /servicesNS/-/-/apps/local&lt;/LI-CODE&gt;</description>
    <pubDate>Thu, 17 Jun 2021 15:31:11 GMT</pubDate>
    <dc:creator>richgalloway</dc:creator>
    <dc:date>2021-06-17T15:31:11Z</dc:date>
    <item>
      <title>search to get an overview of all dashboards and apps with  authorizations</title>
      <link>https://community.splunk.com/t5/Splunk-Search/search-to-get-an-overview-of-all-dashboards-and-apps-with/m-p/556157#M157919</link>
      <description>&lt;P&gt;I have a search to get an overview of all users with their authorizations: roles, capabilities, indexes (search found somewhere else on this community).&lt;/P&gt;&lt;P&gt;I wonder if it is also possible to get an overview of the apps and dashboards with the coupled roles.&lt;/P&gt;&lt;P&gt;Does anyone know if this is possible and if so how to do it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jun 2021 11:50:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/search-to-get-an-overview-of-all-dashboards-and-apps-with/m-p/556157#M157919</guid>
      <dc:creator>rrovers</dc:creator>
      <dc:date>2021-06-17T11:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: search to get an overview of all dashboards and apps with  authorizations</title>
      <link>https://community.splunk.com/t5/Splunk-Search/search-to-get-an-overview-of-all-dashboards-and-apps-with/m-p/556196#M157936</link>
      <description>&lt;P&gt;You can get a list of apps and dashboards using REST commands, but it will come with user names rather than role names.&amp;nbsp; You'll have to correlate with your user list to get roles.&lt;/P&gt;&lt;P&gt;Try&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rest /servicesNS/-/-/data/ui/views

| rest /servicesNS/-/-/apps/local&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 17 Jun 2021 15:31:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/search-to-get-an-overview-of-all-dashboards-and-apps-with/m-p/556196#M157936</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2021-06-17T15:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: search to get an overview of all dashboards and apps with  authorizations</title>
      <link>https://community.splunk.com/t5/Splunk-Search/search-to-get-an-overview-of-all-dashboards-and-apps-with/m-p/561349#M195307</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/213957"&gt;@richgalloway&lt;/a&gt;, thanks, if I combine these 2 I get the result I want:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;| rest /servicesNS/-/-/data/ui/views
| rename eai:acl.app AS app
| rename eai:acl.perms.write as dashboard-write-permission
| rename eai:acl.perms.read as dashboard-read-permission
| rename eai:appName as appName
| join type=outer appName
[| rest /servicesNS/-/-/apps/local
| rename title AS appName
| rename eai:acl.perms.read AS app-read-permission
| rename eai:acl.perms.write AS app-write-permission]
| table app label title dashboard-read-permission dashboard-read-permission app-write-permission app-read-permission&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 12 Oct 2023 14:04:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/search-to-get-an-overview-of-all-dashboards-and-apps-with/m-p/561349#M195307</guid>
      <dc:creator>rrovers</dc:creator>
      <dc:date>2023-10-12T14:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: search to get an overview of all dashboards and apps with  authorizations</title>
      <link>https://community.splunk.com/t5/Splunk-Search/search-to-get-an-overview-of-all-dashboards-and-apps-with/m-p/561355#M195309</link>
      <description>&lt;P&gt;If your problem is resolved, then please click the "Accept as Solution" button to help future readers.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jul 2021 12:42:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/search-to-get-an-overview-of-all-dashboards-and-apps-with/m-p/561355#M195309</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2021-07-29T12:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: search to get an overview of all dashboards and apps with  authorizations</title>
      <link>https://community.splunk.com/t5/Splunk-Search/search-to-get-an-overview-of-all-dashboards-and-apps-with/m-p/660529#M228045</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;at the end we would like put write instead of read &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;| table app label title dashboard-read-permission dashboard-write-permission app-write-permission app-read-permission&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 12 Oct 2023 14:03:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/search-to-get-an-overview-of-all-dashboards-and-apps-with/m-p/660529#M228045</guid>
      <dc:creator>splunkreal</dc:creator>
      <dc:date>2023-10-12T14:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: search to get an overview of all dashboards and apps with  authorizations</title>
      <link>https://community.splunk.com/t5/Splunk-Search/search-to-get-an-overview-of-all-dashboards-and-apps-with/m-p/660534#M228047</link>
      <description>&lt;P&gt;This thread is more than 2 years old with an accepted solution so it's unlikely to get many more responses.&amp;nbsp; If it does not solve your problem then please post a new question.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Oct 2023 14:27:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/search-to-get-an-overview-of-all-dashboards-and-apps-with/m-p/660534#M228047</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-10-12T14:27:39Z</dc:date>
    </item>
  </channel>
</rss>

