<?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: How to manage Searches &amp; Reports in 6.2.0 in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-manage-Searches-Reports-in-6-2-0/m-p/149551#M41831</link>
    <description>&lt;P&gt;thank for the accepted answer&lt;/P&gt;</description>
    <pubDate>Tue, 21 Apr 2015 22:45:36 GMT</pubDate>
    <dc:creator>chimell</dc:creator>
    <dc:date>2015-04-21T22:45:36Z</dc:date>
    <item>
      <title>How to manage Searches &amp; Reports in 6.2.0</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-manage-Searches-Reports-in-6-2-0/m-p/149548#M41828</link>
      <description>&lt;P&gt;In 4.3 SPLUNK we had a niche drop-down menue with our saved searches properly grouped.&lt;BR /&gt;
Therefore we would define collections in default.xml like: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;collection label="Searches &amp;amp;amp; Reports"&amp;gt;
    &amp;lt;collection label="FIX"&amp;gt;
      &amp;lt;saved source="unclassified" match="FIX" /&amp;gt;
    &amp;lt;/collection&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;It appears that in 6.2.0 all of this has gone. The default.xml is basically empty.&lt;/P&gt;

&lt;P&gt;What is the concept now of grouping searches and displaying them in a drop-down menue as opposed to having to switch to the reports-page?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 11 Dec 2014 10:01:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-manage-Searches-Reports-in-6-2-0/m-p/149548#M41828</guid>
      <dc:creator>ufotech</dc:creator>
      <dc:date>2014-12-11T10:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage Searches &amp; Reports in 6.2.0</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-manage-Searches-Reports-in-6-2-0/m-p/149549#M41829</link>
      <description>&lt;P&gt;Ok. I found that copying the content into default.xml produces the required result.&lt;BR /&gt;
It still works in 6.2.0 just the same. &lt;BR /&gt;
Only the settings were lost in the two-step migration 4.3 - 6.0 - 6.2&lt;/P&gt;</description>
      <pubDate>Thu, 11 Dec 2014 17:19:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-manage-Searches-Reports-in-6-2-0/m-p/149549#M41829</guid>
      <dc:creator>ufotech</dc:creator>
      <dc:date>2014-12-11T17:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage Searches &amp; Reports in 6.2.0</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-manage-Searches-Reports-in-6-2-0/m-p/149550#M41830</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;try it like this :
      If you want to create for example 5 views (reports) you must write 5 queries and use each of them in his own view using xml code . see link : &lt;A href="http://student04:8000/en-US/manager/my_app_name/data/ui/views" target="test_blank"&gt;http://student04:8000/en-US/manager/my_app_name/data/ui/views&lt;/A&gt; .This is a example of report code xml : 

    &amp;lt;dashboard &amp;gt;
          &amp;lt;label&amp;gt; the label of your report&amp;lt;/label&amp;gt;
          &amp;lt;row&amp;gt;
            &amp;lt;panel&amp;gt;
            &amp;lt;title&amp;gt;title of your first panel&amp;lt;/title&amp;gt;
            &amp;lt;searchString&amp;gt;enter your search code &amp;lt;/searchString&amp;gt;
           &amp;lt;earliestTime&amp;gt; enter your earliest time e.g   -60m@m&amp;lt;earliestTime&amp;gt;
           &amp;lt;latestTime&amp;gt;enter your latest time &amp;lt;latestTime&amp;gt;
           &amp;lt;/panel&amp;gt;
   &amp;lt;/dashboard&amp;gt;
          Save it as report1 for example

      After creating all your view reports  go to &lt;A href="http://student04:8000/en-US/manager/my_app_name/data/ui/nav/default" target="test_blank"&gt;http://student04:8000/en-US/manager/my_app_name/data/ui/nav/default&lt;/A&gt;   and write this code : 

      &amp;lt;nav  search_view=" my_app_name " color="#993300"&amp;gt;
            &amp;lt;view name="search" default='true' /&amp;gt;
            &amp;lt;collection  label="my reports"&amp;gt;
                         &amp;lt;view name="report1"/&amp;gt;
                         &amp;lt;view name="report2"/&amp;gt;
                             ……………
            &amp;lt;/collection&amp;gt;
    &amp;lt;/nav&amp;gt;
    After doing this you must see the drop down menu of your report in the interface of your application.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 12 Dec 2014 13:02:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-manage-Searches-Reports-in-6-2-0/m-p/149550#M41830</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2014-12-12T13:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage Searches &amp; Reports in 6.2.0</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-manage-Searches-Reports-in-6-2-0/m-p/149551#M41831</link>
      <description>&lt;P&gt;thank for the accepted answer&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2015 22:45:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-manage-Searches-Reports-in-6-2-0/m-p/149551#M41831</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2015-04-21T22:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to manage Searches &amp; Reports in 6.2.0</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-manage-Searches-Reports-in-6-2-0/m-p/149552#M41832</link>
      <description>&lt;P&gt;now i need that you vote me&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2015 22:54:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-manage-Searches-Reports-in-6-2-0/m-p/149552#M41832</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2015-04-21T22:54:18Z</dc:date>
    </item>
  </channel>
</rss>

