<?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: All Dashboard Listing in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/All-Dashboard-Listing/m-p/507200#M33720</link>
    <description>&lt;P&gt;See the REST api documentation&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.4/RESTREF/RESTknowledge#data.2Fui.2Fviews" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.4/RESTREF/RESTknowledge#data.2Fui.2Fviews&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 03 Jul 2020 06:50:54 GMT</pubDate>
    <dc:creator>bowesmana</dc:creator>
    <dc:date>2020-07-03T06:50:54Z</dc:date>
    <item>
      <title>All Dashboard Listing</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/All-Dashboard-Listing/m-p/507193#M33719</link>
      <description>&lt;P&gt;How can I list out all the dashboards available in all the apps in my Splunk environment?&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jul 2020 06:15:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/All-Dashboard-Listing/m-p/507193#M33719</guid>
      <dc:creator>anil15694</dc:creator>
      <dc:date>2020-07-03T06:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: All Dashboard Listing</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/All-Dashboard-Listing/m-p/507200#M33720</link>
      <description>&lt;P&gt;See the REST api documentation&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.4/RESTREF/RESTknowledge#data.2Fui.2Fviews" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.4/RESTREF/RESTknowledge#data.2Fui.2Fviews&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jul 2020 06:50:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/All-Dashboard-Listing/m-p/507200#M33720</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2020-07-03T06:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: All Dashboard Listing</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/All-Dashboard-Listing/m-p/507209#M33721</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;e.g. the next query list all Splunk KOs. The last line selects just Dashboards.&lt;/P&gt;&lt;P&gt;Thanx for this query for someone (couldn't recall who was the originator of this).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="java"&gt;| rest /servicesNS/-/-/admin/directory count=0 splunk_server=local | fields eai:acl.app, eai:acl.owner, eai:acl.perms.*, eai:acl.sharing, title, eai:type, disabled
| foreach eai:*.* 
    [ rename "&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;" TO &amp;lt;&amp;lt;MATCHSEG2&amp;gt;&amp;gt; ]
| foreach eai:* 
    [ rename "&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;" TO &amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt; ]
| eval attribute=replace(title,"(.*:\s+)(.*)","\2")
| eval st=replace(title,"(.*)(\s+:.*)","\1")
| eval props_sourcetype=if(st==attribute,"",st)
| join type=outer attribute
    [| rest /servicesNS/-/-/admin/props-extract count=0 splunk_server=local | fields attribute value stanza type | rename value TO props_value, stanza to props_stanza, type to props_type ]
| join type=outer attribute
    [| rest /servicesNS/-/-/admin/transforms-extract count=0 splunk_server=local
    | fields REGEX FORMAT disabled eai:acl.app title FIELDS
    | makemv delim="," FIELDS
    | rename FIELDS to tf_fields, disabled to tf_disabled, REGEX to tf_regex, FORMAT to tf_format, title to attribute, eai:acl.app to tf_app]
| fillnull disabled tf_disabled
| table disabled app type attribute props_type props_stanza props_value props_sourcetype tf_disabled tf_format tf_fields tf_regex sharing perms.* location owner |  search (app="*" AND (sharing="*")) AND disabled=*  
| rename attribute TO "Object Name"
| where type == "views"&lt;/LI-CODE&gt;&lt;P&gt;r. Ismo&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jul 2020 07:49:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/All-Dashboard-Listing/m-p/507209#M33721</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2020-07-03T07:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: All Dashboard Listing</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/All-Dashboard-Listing/m-p/508319#M33816</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/184532"&gt;@anil15694&lt;/a&gt;&amp;nbsp;Please refer to one of my older answers with REST API /data/ui/views, that can be used to pull available dashboards based on App Context and User context.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-a-dashboard-as-value-in-dropdown-of-another/td-p/327727" target="_blank"&gt;https://community.splunk.com/t5/Dashboards-Visualizations/How-to-pass-a-dashboard-as-value-in-dropdown-of-another/td-p/327727&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Please try out and confirm. If this does not solve, please provide additional details for your use case.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 14:27:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/All-Dashboard-Listing/m-p/508319#M33816</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-07-09T14:27:41Z</dc:date>
    </item>
  </channel>
</rss>

