<?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 How to create the below view? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-the-below-view/m-p/437408#M168342</link>
    <description>&lt;P&gt;I have a below query:&lt;/P&gt;

&lt;P&gt;index="auto_prod_cm_comparisions" sourcetype="auto_prod_details_log"  source="/logs/web/output/iwarranty/&lt;EM&gt;"  "/apps/web/sfw/java/"   | search NOT Server_Name=*wb&lt;/EM&gt;  | chart values(Java_Version) over Java_Version by Server_Name&lt;/P&gt;

&lt;P&gt;The above query view  shows as below&lt;/P&gt;

&lt;P&gt;Java_Version    -------sat1svmap179.....sat1svmap180.....sat1svmap171....sat1svmap172&lt;BR /&gt;&lt;BR /&gt;
jdk170_151--------------..............................jdk170_151................................... jdk170_151&lt;BR /&gt;&lt;BR /&gt;
jdk170_171..............  jdk170_171 ........................................jdk170_171&lt;/P&gt;

&lt;P&gt;I want the view to be as below,how to do that?&lt;/P&gt;

&lt;P&gt;Java_Version    -----------------------sat1svmap179.....sat1svmap180.....sat1svmap171....sat1svmap172&lt;BR /&gt;
jdk170_151 jdk170_171-----------jdk170_171--------jdk170_151------------jdk170_171-----jdk170_151 &lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 20:26:13 GMT</pubDate>
    <dc:creator>abhi04</dc:creator>
    <dc:date>2020-09-29T20:26:13Z</dc:date>
    <item>
      <title>How to create the below view?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-the-below-view/m-p/437408#M168342</link>
      <description>&lt;P&gt;I have a below query:&lt;/P&gt;

&lt;P&gt;index="auto_prod_cm_comparisions" sourcetype="auto_prod_details_log"  source="/logs/web/output/iwarranty/&lt;EM&gt;"  "/apps/web/sfw/java/"   | search NOT Server_Name=*wb&lt;/EM&gt;  | chart values(Java_Version) over Java_Version by Server_Name&lt;/P&gt;

&lt;P&gt;The above query view  shows as below&lt;/P&gt;

&lt;P&gt;Java_Version    -------sat1svmap179.....sat1svmap180.....sat1svmap171....sat1svmap172&lt;BR /&gt;&lt;BR /&gt;
jdk170_151--------------..............................jdk170_151................................... jdk170_151&lt;BR /&gt;&lt;BR /&gt;
jdk170_171..............  jdk170_171 ........................................jdk170_171&lt;/P&gt;

&lt;P&gt;I want the view to be as below,how to do that?&lt;/P&gt;

&lt;P&gt;Java_Version    -----------------------sat1svmap179.....sat1svmap180.....sat1svmap171....sat1svmap172&lt;BR /&gt;
jdk170_151 jdk170_171-----------jdk170_171--------jdk170_151------------jdk170_171-----jdk170_151 &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 20:26:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-the-below-view/m-p/437408#M168342</guid>
      <dc:creator>abhi04</dc:creator>
      <dc:date>2020-09-29T20:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to create the below view?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-the-below-view/m-p/437409#M168343</link>
      <description>&lt;P&gt;Do you want to display on a single line?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(your search)|stats values(*) as *
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 13 Jul 2018 09:13:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-the-below-view/m-p/437409#M168343</guid>
      <dc:creator>HiroshiSatoh</dc:creator>
      <dc:date>2018-07-13T09:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to create the below view?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-the-below-view/m-p/437410#M168344</link>
      <description>&lt;P&gt;@HiroshiSatoh&lt;/P&gt;

&lt;P&gt;yes I need in a single line. Above query works for the servers and not under the java_version&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jul 2018 09:26:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-the-below-view/m-p/437410#M168344</guid>
      <dc:creator>abhi04</dc:creator>
      <dc:date>2018-07-13T09:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to create the below view?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-the-below-view/m-p/437411#M168345</link>
      <description>&lt;P&gt;What exactly do you mean that it doesn't work for the Java_Version field? You mean the multiple values in the field are displayed below each other? That's because it is a multi valued field.&lt;/P&gt;

&lt;P&gt;You can combine that into a single value by using &lt;CODE&gt;| eval Java_Version = mvjoin(Java_Version, " ")&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jul 2018 10:09:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-the-below-view/m-p/437411#M168345</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2018-07-13T10:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to create the below view?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-the-below-view/m-p/437412#M168346</link>
      <description>&lt;P&gt;@HiroshiSatoh,&lt;/P&gt;

&lt;P&gt;The above worked, but now the ordering of columns have changed with Java_Version column now came at the middle. Of what I y=understand after the command "|stats values(*) as *" it has arranged the columns alphabetically. How to rearrange it back to the previous order?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jul 2018 15:37:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-the-below-view/m-p/437412#M168346</guid>
      <dc:creator>abhi04</dc:creator>
      <dc:date>2018-07-13T15:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to create the below view?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-the-below-view/m-p/437413#M168347</link>
      <description>&lt;P&gt;You can use the &lt;CODE&gt;| table field1,field2,...&lt;/CODE&gt; command to order the fields as you desire.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Jul 2018 06:49:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-the-below-view/m-p/437413#M168347</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2018-07-14T06:49:06Z</dc:date>
    </item>
  </channel>
</rss>

