<?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: Is there a way to remove the &amp;quot;Open in Search, Inspect, and Export&amp;quot; options from the bottom of the dashboar in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/682239#M55862</link>
    <description>&lt;P&gt;Hi according to the suggestion, I have tried out and successfully getting the expected behavior that only "admin" role users can have the options to do "Open in Search"/"Export" and etc... Amend the SPL search accordingly to what you desire to achieve&lt;BR /&gt;&lt;BR /&gt;&amp;lt;!-- Running searches and gaining role value for current user --&amp;gt;&lt;BR /&gt;&amp;lt;search&amp;gt;&lt;BR /&gt;&amp;lt;query&amp;gt;| rest /services/authentication/current-context | search username!=splunk-system-user&lt;BR /&gt;| fields roles &amp;lt;/query&amp;gt;&lt;BR /&gt;&amp;lt;earliest&amp;gt;-15m&amp;lt;/earliest&amp;gt;&lt;BR /&gt;&amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;&lt;BR /&gt;&amp;lt;done&amp;gt;&lt;BR /&gt;&amp;lt;eval token="search_visible"&amp;gt;if($result.roles$=="admin","true","false")&amp;lt;/eval&amp;gt;&lt;BR /&gt;&amp;lt;/done&amp;gt;&lt;BR /&gt;&amp;lt;/search&amp;gt;&lt;BR /&gt;&amp;lt;!-- Running searches and gaining role value for current user --&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!-- selectively disable only exporting fucntion --&amp;gt;&lt;BR /&gt;&amp;lt;!-- admin role can export, other roles can't&amp;nbsp; etc etc..--&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;option name="link.exportResults.visible"&amp;gt;$search_visible$&amp;lt;/option&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 28 Mar 2024 07:25:01 GMT</pubDate>
    <dc:creator>JL99</dc:creator>
    <dc:date>2024-03-28T07:25:01Z</dc:date>
    <item>
      <title>Is there a way to remove the "Open in Search, Inspect, and Export" options from the bottom of the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191789#M11970</link>
      <description>&lt;P&gt;Hi folks,&lt;/P&gt;

&lt;P&gt;I want to remove these so management doesn't start clicking on them and asking me a million questions. I just want them to see the dashboards, no drill down, and no search/export/inspect. I can't seem to find the option that removes these, and I am almost sure I've seen it before.&lt;/P&gt;

&lt;P&gt;Thanks!&lt;/P&gt;

&lt;P&gt;Joe&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2014 16:27:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191789#M11970</guid>
      <dc:creator>jravida</dc:creator>
      <dc:date>2014-06-06T16:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to remove the "Open in Search, Inspect, and Export" options from the bottom of the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191790#M11971</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;&amp;lt;option name="link.visible"&amp;gt;false&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 14 Oct 2014 05:58:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191790#M11971</guid>
      <dc:creator>nidhigoyal</dc:creator>
      <dc:date>2014-10-14T05:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to remove the "Open in Search, Inspect, and Export" options from the bottom of the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191791#M11972</link>
      <description>&lt;P&gt;@nidhigoyal is correct.  Using "link.visible" should disable all links at the bottom of the panel, where you also have the ability to disable individually if you need.&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.1.4/Viz/PanelreferenceforSimplifiedXML"&gt;http://docs.splunk.com/Documentation/Splunk/6.1.4/Viz/PanelreferenceforSimplifiedXML&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Use the syntax shown below within each panel element:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;!-- disable all panel links --&amp;gt;
&amp;lt;option name="link.visible"&amp;gt;false&amp;lt;/option&amp;gt;

&amp;lt;!-- selectively disable each of the links --&amp;gt;
&amp;lt;option name="refresh.link.visible"&amp;gt;false&amp;lt;/option&amp;gt;
&amp;lt;option name="link.openSearch.visible"&amp;gt;false&amp;lt;/option&amp;gt;
&amp;lt;option name="link.openPivot.visible"&amp;gt;false&amp;lt;/option&amp;gt;
&amp;lt;option name="link.inspectSearch.visible"&amp;gt;false&amp;lt;/option&amp;gt;
&amp;lt;option name="link.exportResults.visible"&amp;gt;false&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 14 Oct 2014 15:40:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191791#M11972</guid>
      <dc:creator>nfilippi_splunk</dc:creator>
      <dc:date>2014-10-14T15:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to remove the "Open in Search, Inspect, and Export" options from the bottom of the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191792#M11973</link>
      <description>&lt;P&gt;The above suggestion was working for version 6.1; &lt;/P&gt;

&lt;P&gt;However, "Open in search", "inspect" and "export" options cannot be removed from splunk enterprise 6.3  version as suggested above. Can someone confirm? &lt;/P&gt;</description>
      <pubDate>Wed, 28 Oct 2015 00:22:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191792#M11973</guid>
      <dc:creator>rt99home</dc:creator>
      <dc:date>2015-10-28T00:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to remove the "Open in Search, Inspect, and Export" options from the bottom of the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191793#M11974</link>
      <description>&lt;P&gt;According to the docs for 6.3 it should still work the same. &lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.3.0/Viz/PanelreferenceforSimplifiedXML"&gt;http://docs.splunk.com/Documentation/Splunk/6.3.0/Viz/PanelreferenceforSimplifiedXML&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Oct 2015 00:33:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191793#M11974</guid>
      <dc:creator>MattZerfas</dc:creator>
      <dc:date>2015-10-28T00:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to remove the "Open in Search, Inspect, and Export" options from the bottom of the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191794#M11975</link>
      <description>&lt;P&gt;You could also completely hide the whole grey panel footer and sliding size bar with this bit of css.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;.dashboard-row .dashboard-panel .ui-resizable-handle{
   display: none !important;
}
.dashboard-row .dashboard-panel .dashboard-element .panel-footer {
   display: none;
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 12 Feb 2016 04:10:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191794#M11975</guid>
      <dc:creator>proylea</dc:creator>
      <dc:date>2016-02-12T04:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to remove the "Open in Search, Inspect, and Export" options from the bottom of the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191795#M11976</link>
      <description>&lt;P&gt;Coooool &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 21:15:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191795#M11976</guid>
      <dc:creator>Kuj</dc:creator>
      <dc:date>2016-05-31T21:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to remove the "Open in Search, Inspect, and Export" options from the bottom of the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191796#M11977</link>
      <description>&lt;P&gt;The export button will not work if you are using a post-processing search, so if you are trying to enable it and it's not working that might be why. &lt;/P&gt;

&lt;P&gt;See &lt;A href="https://answers.splunk.com/answers/550070/why-export-button-is-grayed-out-in-some-of-my-pane.html"&gt;https://answers.splunk.com/answers/550070/why-export-button-is-grayed-out-in-some-of-my-pane.html&lt;/A&gt;. &lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 17:57:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191796#M11977</guid>
      <dc:creator>grittonc</dc:creator>
      <dc:date>2019-03-11T17:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to remove the "Open in Search, Inspect, and Export" options from the bottom of the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191797#M11978</link>
      <description>&lt;P&gt;Is it possible to do this per user/role?&lt;BR /&gt;
We want some users to have the export feature but not for others&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2019 11:28:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191797#M11978</guid>
      <dc:creator>cbhattad</dc:creator>
      <dc:date>2019-10-17T11:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to remove the "Open in Search, Inspect, and Export" options from the bottom of the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191798#M11979</link>
      <description>&lt;P&gt;nice !!!!&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2019 04:58:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191798#M11979</guid>
      <dc:creator>ydeveloper</dc:creator>
      <dc:date>2019-10-22T04:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to remove the "Open in Search, Inspect, and Export" options from the bottom of the dashboard?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191799#M11980</link>
      <description>&lt;P&gt;@cbhattad &lt;BR /&gt;
Take a look at my post here. &lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/793588/is-it-possible-to-assign-a-token-value-to-a-user-o.html"&gt;https://answers.splunk.com/answers/793588/is-it-possible-to-assign-a-token-value-to-a-user-o.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;While it doesn't directly answer your question, you should be able to use the same logic to assign a token value of "false" or "true" to the&lt;BR /&gt;
&lt;CODE&gt;&amp;lt;option name="link.visible"&amp;gt;$tok_Vis$&amp;lt;/option&amp;gt;&lt;/CODE&gt; to obtain your required result.&lt;/P&gt;

&lt;P&gt;Note, however, that even though search, and therefore the SPL that runs it, is not available, a savy user &lt;EM&gt;could&lt;/EM&gt; right-click and &lt;STRONG&gt;view page source&lt;/STRONG&gt; on the webpage. They could then filter through the &lt;BR /&gt;
source and pick out your search code. &lt;/P&gt;

&lt;P&gt;Hope this helps.&lt;BR /&gt;
Thanks and God bless,&lt;BR /&gt;
Genesius&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 17:50:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/191799#M11980</guid>
      <dc:creator>genesiusj</dc:creator>
      <dc:date>2020-01-08T17:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to remove the "Open in Search, Inspect, and Export" options from the bottom of the dashboar</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/682239#M55862</link>
      <description>&lt;P&gt;Hi according to the suggestion, I have tried out and successfully getting the expected behavior that only "admin" role users can have the options to do "Open in Search"/"Export" and etc... Amend the SPL search accordingly to what you desire to achieve&lt;BR /&gt;&lt;BR /&gt;&amp;lt;!-- Running searches and gaining role value for current user --&amp;gt;&lt;BR /&gt;&amp;lt;search&amp;gt;&lt;BR /&gt;&amp;lt;query&amp;gt;| rest /services/authentication/current-context | search username!=splunk-system-user&lt;BR /&gt;| fields roles &amp;lt;/query&amp;gt;&lt;BR /&gt;&amp;lt;earliest&amp;gt;-15m&amp;lt;/earliest&amp;gt;&lt;BR /&gt;&amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;&lt;BR /&gt;&amp;lt;done&amp;gt;&lt;BR /&gt;&amp;lt;eval token="search_visible"&amp;gt;if($result.roles$=="admin","true","false")&amp;lt;/eval&amp;gt;&lt;BR /&gt;&amp;lt;/done&amp;gt;&lt;BR /&gt;&amp;lt;/search&amp;gt;&lt;BR /&gt;&amp;lt;!-- Running searches and gaining role value for current user --&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!-- selectively disable only exporting fucntion --&amp;gt;&lt;BR /&gt;&amp;lt;!-- admin role can export, other roles can't&amp;nbsp; etc etc..--&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;option name="link.exportResults.visible"&amp;gt;$search_visible$&amp;lt;/option&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2024 07:25:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/682239#M55862</guid>
      <dc:creator>JL99</dc:creator>
      <dc:date>2024-03-28T07:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to remove the "Open in Search, Inspect, and Export" options from the bottom of the dashboar</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/688338#M56363</link>
      <description>&lt;P&gt;Use Below options&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;option name="link.exportResults.visible"&amp;gt;0&amp;lt;/option&amp;gt;
&amp;lt;option name="link.inspectSearch.visible"&amp;gt;0&amp;lt;/option&amp;gt;
&amp;lt;option name="link.openPivot.visible"&amp;gt;0&amp;lt;/option&amp;gt;
&amp;lt;option name="link.openSearch.visible"&amp;gt;0&amp;lt;/option&amp;gt;
&amp;lt;option name="link.visible"&amp;gt;0&amp;lt;/option&amp;gt;
&amp;lt;option name="refresh.link.visible"&amp;gt;0&amp;lt;/option&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 22 May 2024 13:33:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-there-a-way-to-remove-the-quot-Open-in-Search-Inspect-and/m-p/688338#M56363</guid>
      <dc:creator>RaviNandasana0</dc:creator>
      <dc:date>2024-05-22T13:33:51Z</dc:date>
    </item>
  </channel>
</rss>

