<?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 display the source for every event in search results without clicking drop-down? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-the-source-for-every-event-in-search-results/m-p/482097#M82612</link>
    <description>&lt;P&gt;You're right, when you use table, it does eliminate line breaks... but they are still there just not being displayed properly. &lt;/P&gt;

&lt;P&gt;Try this: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=INDEX
| rex max_match=0 "^(?&amp;lt;rawlines&amp;gt;.+)\n+" 
| eval newraw=mvindex(rawlines,0,-1) 
| table newraw
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 22 Apr 2020 16:47:35 GMT</pubDate>
    <dc:creator>darrenfuller</dc:creator>
    <dc:date>2020-04-22T16:47:35Z</dc:date>
    <item>
      <title>How to display the source for every event in search results without clicking drop-down?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-the-source-for-every-event-in-search-results/m-p/482094#M82609</link>
      <description>&lt;P&gt;Is there a way to show the source for an event in the results for a search? I am wanting to see the complete source for every row of the results. Put simply the information you would see for a selected row when you manually click into event by "Event actions --&amp;gt; Show Source" and get a fresh page that shows the source info. I'm looking to see that info for every row on the screen.&lt;BR /&gt;
I understand how to 'Pick one row, then click that dropdown to see the source'. &lt;/P&gt;

&lt;P&gt;Please note the below does not answer the question. The answer below tells how to 'for each' manually see the source for one event (the one you click into): &lt;A href="https://answers.splunk.com/answers/289234/how-to-display-the-entire-source-under-each-event.html"&gt;https://answers.splunk.com/answers/289234/how-to-display-the-entire-source-under-each-event.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Thanks!&lt;BR /&gt;
Will-&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 16:07:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-display-the-source-for-every-event-in-search-results/m-p/482094#M82609</guid>
      <dc:creator>webberw</dc:creator>
      <dc:date>2020-04-22T16:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the source for every event in search results without clicking drop-down?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-the-source-for-every-event-in-search-results/m-p/482095#M82610</link>
      <description>&lt;P&gt;You can use _raw field. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=INDEX  | table _raw
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 Apr 2020 16:26:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-display-the-source-for-every-event-in-search-results/m-p/482095#M82610</guid>
      <dc:creator>manjunathmeti</dc:creator>
      <dc:date>2020-04-22T16:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the source for every event in search results without clicking drop-down?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-the-source-for-every-event-in-search-results/m-p/482096#M82611</link>
      <description>&lt;P&gt;Thank you for that quick answer. But that does not seem to show the exact same info. Manually clicking "Event actions --&amp;gt; Show Source" for a result row seems to include information spanning across line breaks that happen inside the log entry. That is, you see a full stacktrace even though the stacktrace has linebreaks. Whereas adding "table _raw" does not show all those lines.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 16:33:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-display-the-source-for-every-event-in-search-results/m-p/482096#M82611</guid>
      <dc:creator>webberw</dc:creator>
      <dc:date>2020-04-22T16:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the source for every event in search results without clicking drop-down?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-the-source-for-every-event-in-search-results/m-p/482097#M82612</link>
      <description>&lt;P&gt;You're right, when you use table, it does eliminate line breaks... but they are still there just not being displayed properly. &lt;/P&gt;

&lt;P&gt;Try this: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=INDEX
| rex max_match=0 "^(?&amp;lt;rawlines&amp;gt;.+)\n+" 
| eval newraw=mvindex(rawlines,0,-1) 
| table newraw
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 Apr 2020 16:47:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-display-the-source-for-every-event-in-search-results/m-p/482097#M82612</guid>
      <dc:creator>darrenfuller</dc:creator>
      <dc:date>2020-04-22T16:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the source for every event in search results without clicking drop-down?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-the-source-for-every-event-in-search-results/m-p/482098#M82613</link>
      <description>&lt;P&gt;Oddly....This search yields what looks like empty/blank results: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=myindex  "NullPointerException"  | rex max_match=0 "^(?.+)\n+" | eval newraw=mvindex(rawlines,0,-1) | table newraw
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Whereas this old 'manual query' I have been using before posting here yields rows where I can manually click into each one and see the source:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=myindex  "NullPointerException" 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Results now: &lt;A href="https://imgur.com/a/iu9Vqtj"&gt;https://imgur.com/a/iu9Vqtj&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 17:09:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-display-the-source-for-every-event-in-search-results/m-p/482098#M82613</guid>
      <dc:creator>webberw</dc:creator>
      <dc:date>2020-04-22T17:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to display the source for every event in search results without clicking drop-down?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-display-the-source-for-every-event-in-search-results/m-p/482099#M82614</link>
      <description>&lt;P&gt;"Event actions --&amp;gt; Show Source" is a workflow action and a workflow action can only be created at event-level (meaning they apply to an entire event), field-level (meaning they apply to specific fields within events), or both. You cannot create it for all events.&lt;/P&gt;

&lt;P&gt;Check this:&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.3/Knowledge/CreateworkflowactionsinSplunkWeb"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.3/Knowledge/CreateworkflowactionsinSplunkWeb&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 19:22:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-display-the-source-for-every-event-in-search-results/m-p/482099#M82614</guid>
      <dc:creator>manjunathmeti</dc:creator>
      <dc:date>2020-04-22T19:22:31Z</dc:date>
    </item>
  </channel>
</rss>

