<?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: Data spliting in Reporting</title>
    <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302627#M5611</link>
    <description>&lt;P&gt;Thank you somuch DalJeanis..It works absolutely fine...Awesome &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;BR /&gt;
kudos to you&lt;/P&gt;</description>
    <pubDate>Thu, 06 Apr 2017 04:15:21 GMT</pubDate>
    <dc:creator>prathapkcsc</dc:creator>
    <dc:date>2017-04-06T04:15:21Z</dc:date>
    <item>
      <title>Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302615#M5599</link>
      <description>&lt;P&gt;i  have a data like this &lt;BR /&gt;
ip = 10.60.11.170 , value = 46&lt;BR /&gt;
ip = 10.60.11.168 , value = 47&lt;BR /&gt;
ip = 10.60.11.171 , value = 48&lt;BR /&gt;
ip = 10.60.11.167 , value = 47&lt;BR /&gt;
like 10 rows&lt;BR /&gt;
i want to store the above data in table format and i need to generate the visualization like for particular ip address,how much memory consuming .&lt;/P&gt;

&lt;P&gt;when i am giving&lt;BR /&gt;
source=my base search | table ip,value&lt;/P&gt;

&lt;P&gt;after executing this,its giving me only 1st row.How to get the remaining all&lt;BR /&gt;
Can anyone help me how to crack this&lt;BR /&gt;
Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2017 11:45:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302615#M5599</guid>
      <dc:creator>prathapkcsc</dc:creator>
      <dc:date>2017-04-05T11:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302616#M5600</link>
      <description>&lt;P&gt;Is the above data all in a single record, or is it in individual records?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2017 15:11:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302616#M5600</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-04-05T15:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302617#M5601</link>
      <description>&lt;P&gt;This just generates some test records with your sample data.  Now, what did you want your visualization to look like?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults 
| eval allmydata="ip = 10.60.11.170 , value = 46
ip = 10.60.11.168 , value = 47
ip = 10.60.11.171 , value = 48
ip = 10.60.11.167 , value = 47"
| rex field=allmydata max_match=0 "(?&amp;lt;thedata&amp;gt;ip = ([\d\.]+) , value = (\d+))"
| fields thedata
| mvexpand thedata
| rex field=thedata max_match=0 "ip = (?&amp;lt;ip&amp;gt;[\d\.]+) , value = (?&amp;lt;value&amp;gt;\d+)"
| table ip value
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 05 Apr 2017 15:21:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302617#M5601</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-04-05T15:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302618#M5602</link>
      <description>&lt;P&gt;The value&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2017 15:25:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302618#M5602</guid>
      <dc:creator>prathapkcsc</dc:creator>
      <dc:date>2017-04-05T15:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302619#M5603</link>
      <description>&lt;P&gt;It is a text with 10 rows of data coming from the linux script.Here the value changes dynamically.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2017 15:27:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302619#M5603</guid>
      <dc:creator>prathapkcsc</dc:creator>
      <dc:date>2017-04-05T15:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302620#M5604</link>
      <description>&lt;PRE&gt;&lt;CODE&gt; | chart sum(value) as value by ip
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 05 Apr 2017 17:09:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302620#M5604</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-04-05T17:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302621#M5605</link>
      <description>&lt;P&gt;The value field comes from the text dynamically...the value field is the free memory of the datanode..that gives different values every time..but in your solution you hardcoded value field..&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2017 17:13:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302621#M5605</guid>
      <dc:creator>prathapkcsc</dc:creator>
      <dc:date>2017-04-05T17:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302622#M5606</link>
      <description>&lt;P&gt;Okay, the sample code, from line 6 on, will handle pulling the data out of any event where it is present as multiple data lines such as the sample data in lines 2-5.  If the &lt;CODE&gt;_time&lt;/CODE&gt; field is present on the event and you are looking for CPU usage across time, then be sure to include &lt;CODE&gt;_time&lt;/CODE&gt; in the table command in line 10.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2017 17:14:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302622#M5606</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-04-05T17:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302623#M5607</link>
      <description>&lt;P&gt;I wrote a script that checks how much cpu,memory consuming the datanodes..that details would store in one text file..&lt;BR /&gt;
I have 10 datanodes,so for each datanode one different value will come dynamically.for that i need to store in table and have to generate one graph which shows the freee memory status of the corresponding node...&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2017 17:23:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302623#M5607</guid>
      <dc:creator>prathapkcsc</dc:creator>
      <dc:date>2017-04-05T17:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302624#M5608</link>
      <description>&lt;P&gt;I wrote a script that checks how much cpu,memory consuming the datanodes..that details would store in one text file..&lt;BR /&gt;
I have 10 datanodes,so for each datanode one different value will come dynamically.for that i need to store in table and have to generate one graph which shows the freee memory status of the corresponding node...&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2017 17:33:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302624#M5608</guid>
      <dc:creator>prathapkcsc</dc:creator>
      <dc:date>2017-04-05T17:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302625#M5609</link>
      <description>&lt;P&gt;Replace lines 1-2 with your actual data.  Use the same format as your sample.  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;ip = xxx.xxx.xxx.xxx , value = xxxx
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 05 Apr 2017 20:24:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302625#M5609</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-04-05T20:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302626#M5610</link>
      <description>&lt;P&gt;ip = xxx.xxx.xxx.xxx , value = xxxx&lt;/P&gt;

&lt;P&gt;Can i give same above in eval command??&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2017 02:26:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302626#M5610</guid>
      <dc:creator>prathapkcsc</dc:creator>
      <dc:date>2017-04-06T02:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302627#M5611</link>
      <description>&lt;P&gt;Thank you somuch DalJeanis..It works absolutely fine...Awesome &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;BR /&gt;
kudos to you&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2017 04:15:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302627#M5611</guid>
      <dc:creator>prathapkcsc</dc:creator>
      <dc:date>2017-04-06T04:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302628#M5612</link>
      <description>&lt;P&gt;You are very welcome.  &lt;/P&gt;

&lt;P&gt;I would expect that you would want to also track this over time.  If you'd like to do that, then post a new question and the community can give you suggestions about how to do that.  (Basically, you'd want to add a date/time stamp to the data, break the data up into individual records, and output that either to a csv or a summary index so that you could read it in later without going to the individual fiels.)&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2017 14:06:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302628#M5612</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-04-06T14:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302629#M5613</link>
      <description>&lt;P&gt;Hey in eval expression we are giving the values manually right?&lt;BR /&gt;
My requirement is that it has pick all the values dynamically.&lt;BR /&gt;
Is there any way to do it that?&lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2017 09:00:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302629#M5613</guid>
      <dc:creator>prathapkcsc</dc:creator>
      <dc:date>2017-04-08T09:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: Data spliting</title>
      <link>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302630#M5614</link>
      <description>&lt;P&gt;eval allmydata="ip = 10.60.11.170 , value = 46&lt;BR /&gt;
 ip = 10.60.11.168 , value = 47&lt;BR /&gt;
 ip = 10.60.11.171 , value = 48&lt;BR /&gt;
 ip = 10.60.11.167 , value = 47"&lt;/P&gt;

&lt;P&gt;i need to avoid these thing.Splunk has to pick all the rows in the event automatically..&lt;/P&gt;

&lt;P&gt;Can you tell me &lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2017 09:58:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Data-spliting/m-p/302630#M5614</guid>
      <dc:creator>prathapkcsc</dc:creator>
      <dc:date>2017-04-08T09:58:34Z</dc:date>
    </item>
  </channel>
</rss>

