<?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: getting results in verbose mode but not in smart or fast mode in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/getting-results-in-verbose-mode-but-not-in-smart-or-fast-mode/m-p/499587#M195030</link>
    <description>&lt;P&gt;&lt;CODE&gt;INDEXED_EXTRACTION&lt;/CODE&gt; is a field extraction done at &lt;EM&gt;index&lt;/EM&gt; time. All fields are being extracted when the data is indexed and they are always available in the events. The Search Mode (Fast/Verbose/Smart) only affects what is &lt;STRONG&gt;displayed&lt;/STRONG&gt; at &lt;EM&gt;search&lt;/EM&gt; time.  Just to clarify: I assume that with "results" you mean that when you switch to the &lt;EM&gt;Events&lt;/EM&gt; tab of the search results, you see no fields when you turn/open the twistie on an event.&lt;BR /&gt;
1. &lt;CODE&gt;index=abc field_name=123|table field_name&lt;/CODE&gt;- All fields in the head of the search appear in the Events, regardless of the search level. Thus, in all levels you will see index and field_name, both being highlighted (yellow). Smart and verbose will show all fields extracted at index time&lt;BR /&gt;
2. &lt;CODE&gt;index=abc&lt;/CODE&gt; - In "fast" mode, you will only see index, but no additional fields will be shown.&lt;BR /&gt;
3. &lt;CODE&gt;index=abc fieldname=123|fields *|table field_name&lt;/CODE&gt; - Same as in 1&lt;/P&gt;

&lt;P&gt;Please note: The fields command affects the internal representation of the result. &lt;CODE&gt;fields - &amp;lt;name&amp;gt;&lt;/CODE&gt; will remove a field from the result. After &lt;CODE&gt;fields - field_name&lt;/CODE&gt; expanding the Events will no longer show field_name. &lt;CODE&gt;fields + *&lt;/CODE&gt; (equivalent to &lt;CODE&gt;fields *&lt;/CODE&gt;) keeps all fields that ** already are in the result** in the result (It does nothing.) Hence the &lt;CODE&gt;+&lt;/CODE&gt; is misleading. Adding a field that does not exist in your result &lt;CODE&gt;... | fields + newfield |...&lt;/CODE&gt; will in effect remove all fields and keep the non-existent. The field list will be empty after this.  &lt;/P&gt;</description>
    <pubDate>Wed, 30 Sep 2020 02:30:25 GMT</pubDate>
    <dc:creator>ololdach</dc:creator>
    <dc:date>2020-09-30T02:30:25Z</dc:date>
    <item>
      <title>getting results in verbose mode but not in smart or fast mode</title>
      <link>https://community.splunk.com/t5/Splunk-Search/getting-results-in-verbose-mode-but-not-in-smart-or-fast-mode/m-p/499585#M195028</link>
      <description>&lt;P&gt;I have indexed file using &lt;CODE&gt;INDEXED_EXTRACTION=csv&lt;/CODE&gt; in props.conf&lt;BR /&gt;
when I search &lt;CODE&gt;index=abc field_name=123&lt;/CODE&gt;  I get results in all three modes i.e. fast/smart/verbose mode and all fields are getting extracted as expected but when I try &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=abc field_name=123|table field_name 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I only get results in Verbose mode and fast/smart mode gives no results. Then I tried using fields in search still same issue.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=abc field_name=123|fields *|table field_name 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This will also give results in Verbose mode and fast/smart mode gives no results. &lt;BR /&gt;
Kindly help on this to resolve issue .&lt;BR /&gt;
Thanks,&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 11:35:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/getting-results-in-verbose-mode-but-not-in-smart-or-fast-mode/m-p/499585#M195028</guid>
      <dc:creator>ips_mandar</dc:creator>
      <dc:date>2019-10-09T11:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: getting results in verbose mode but not in smart or fast mode</title>
      <link>https://community.splunk.com/t5/Splunk-Search/getting-results-in-verbose-mode-but-not-in-smart-or-fast-mode/m-p/499586#M195029</link>
      <description>&lt;P&gt;Hi ips_mandar,&lt;BR /&gt;
I experienced this behaviour, in a past release there was also a bug so I had a different number of results between Modes!&lt;/P&gt;

&lt;P&gt;Anyway, it's correct to have no results in Fast mode because you haven't any field for search.&lt;/P&gt;

&lt;P&gt;It's not so clear in Smart Mode: did you tried to display results in Verbose mode, put field_name in interesting fields and then run the search again in Smart mode?&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 12:28:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/getting-results-in-verbose-mode-but-not-in-smart-or-fast-mode/m-p/499586#M195029</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-10-09T12:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: getting results in verbose mode but not in smart or fast mode</title>
      <link>https://community.splunk.com/t5/Splunk-Search/getting-results-in-verbose-mode-but-not-in-smart-or-fast-mode/m-p/499587#M195030</link>
      <description>&lt;P&gt;&lt;CODE&gt;INDEXED_EXTRACTION&lt;/CODE&gt; is a field extraction done at &lt;EM&gt;index&lt;/EM&gt; time. All fields are being extracted when the data is indexed and they are always available in the events. The Search Mode (Fast/Verbose/Smart) only affects what is &lt;STRONG&gt;displayed&lt;/STRONG&gt; at &lt;EM&gt;search&lt;/EM&gt; time.  Just to clarify: I assume that with "results" you mean that when you switch to the &lt;EM&gt;Events&lt;/EM&gt; tab of the search results, you see no fields when you turn/open the twistie on an event.&lt;BR /&gt;
1. &lt;CODE&gt;index=abc field_name=123|table field_name&lt;/CODE&gt;- All fields in the head of the search appear in the Events, regardless of the search level. Thus, in all levels you will see index and field_name, both being highlighted (yellow). Smart and verbose will show all fields extracted at index time&lt;BR /&gt;
2. &lt;CODE&gt;index=abc&lt;/CODE&gt; - In "fast" mode, you will only see index, but no additional fields will be shown.&lt;BR /&gt;
3. &lt;CODE&gt;index=abc fieldname=123|fields *|table field_name&lt;/CODE&gt; - Same as in 1&lt;/P&gt;

&lt;P&gt;Please note: The fields command affects the internal representation of the result. &lt;CODE&gt;fields - &amp;lt;name&amp;gt;&lt;/CODE&gt; will remove a field from the result. After &lt;CODE&gt;fields - field_name&lt;/CODE&gt; expanding the Events will no longer show field_name. &lt;CODE&gt;fields + *&lt;/CODE&gt; (equivalent to &lt;CODE&gt;fields *&lt;/CODE&gt;) keeps all fields that ** already are in the result** in the result (It does nothing.) Hence the &lt;CODE&gt;+&lt;/CODE&gt; is misleading. Adding a field that does not exist in your result &lt;CODE&gt;... | fields + newfield |...&lt;/CODE&gt; will in effect remove all fields and keep the non-existent. The field list will be empty after this.  &lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 02:30:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/getting-results-in-verbose-mode-but-not-in-smart-or-fast-mode/m-p/499587#M195030</guid>
      <dc:creator>ololdach</dc:creator>
      <dc:date>2020-09-30T02:30:25Z</dc:date>
    </item>
  </channel>
</rss>

