<?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 split the json array into multiple new events in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122279#M25320</link>
    <description>&lt;P&gt;how about the dynamic field name?&lt;BR /&gt;
such as :&lt;BR /&gt;
 {"Troj/DocDl-QUA": 4, "CXmail/OleDl-AU": 44, "CXmail/EncDoc-B": 6, "Troj/DocDl-QVV": 10, "Troj/DocDl-QVQ": 10, "Troj/DocDl-QWV": 7, "CXmail/OleDl-AD": 341, "Troj/DocDl-QWN": 25, "Troj/DocDl-QVF": 4, "Troj/DocDl-QVC": 8}&lt;/P&gt;

&lt;P&gt;{"Troj/DocDl-QUA": 4, "CXmail/OleDl-AU": 591, "Troj/DocDl-QOQ": 10, "Troj/DocDl-QUE": 9, "Troj/RtfExp-EQ": 1, "Troj/DocDl-QTD": 5, "Troj/DocDl-QUI": 21, "CXmail/OleDl-AD": 868, "CXmail/OleDl-V": 9, "Troj/PDFDown-X": 4} &lt;/P&gt;

&lt;P&gt;I want to transfer it like:&lt;BR /&gt;
 Troj/DocDl-QUA         4&lt;BR /&gt;
 CXmail/OleDl-AU        44&lt;BR /&gt;
 CXmail/EncDoc-B        6&lt;BR /&gt;
 Troj/DocDl-QVV         10&lt;BR /&gt;
 Troj/DocDl-QVQ         10&lt;BR /&gt;
 Troj/DocDl-QWV         7&lt;BR /&gt;
 CXmail/OleDl-AD        341&lt;BR /&gt;
 Troj/DocDl-QWN         25&lt;BR /&gt;
 Troj/DocDl-QVF         4&lt;BR /&gt;
 Troj/DocDl-QVC         8&lt;BR /&gt;
 Troj/DocDl-QUA         4&lt;BR /&gt;
 CXmail/OleDl-AU        591&lt;BR /&gt;
 Troj/DocDl-QOQ         10&lt;BR /&gt;
 Troj/DocDl-QUE         9&lt;BR /&gt;
 Troj/RtfExp-EQ         1&lt;BR /&gt;
 Troj/DocDl-QTD         5&lt;BR /&gt;
 Troj/DocDl-QUI         21&lt;BR /&gt;
 CXmail/OleDl-AD        868&lt;BR /&gt;
 CXmail/OleDl-V         9&lt;BR /&gt;
 Troj/PDFDown-X         4&lt;/P&gt;

&lt;P&gt;so I can sum the same virus type and draw chart. Thanks!&lt;/P&gt;</description>
    <pubDate>Thu, 13 Dec 2018 20:45:40 GMT</pubDate>
    <dc:creator>haoban</dc:creator>
    <dc:date>2018-12-13T20:45:40Z</dc:date>
    <item>
      <title>how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122265#M25306</link>
      <description>&lt;P&gt;I have a json like this format&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;{
  "id":"123412341234",
  "actions": [ 
    {
      "type":"a",
      "status":"b",
      "amount": 1,
      "time_updated": "2013-10-14T11:00"
    },
    {
      "type":"c",
      "status":"d",
      "amount": 1,
      "time_updated": "2013-10-14T12:00"
    }
  ]
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I want to know how to split the array into multiple new events like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;time_updated     id           type status amount
2013-10-14T11:00 123412341234 a    b      1
2013-10-14T12:00 123412341234 c    d      2
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2013 11:18:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122265#M25306</guid>
      <dc:creator>wood1986</dc:creator>
      <dc:date>2013-10-30T11:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122266#M25307</link>
      <description>&lt;P&gt;Hi wood1986,&lt;/P&gt;

&lt;P&gt;have a look at the &lt;A href="http://docs.splunk.com/Documentation/Splunk/5.0.3/SearchReference/Spath"&gt;spath&lt;/A&gt; search command, its purpose is to have a straightforward means for extracting information from structured data formats like XML and JSON.&lt;/P&gt;

&lt;P&gt;hope this helps ...&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2013 12:25:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122266#M25307</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2013-10-30T12:25:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122267#M25308</link>
      <description>&lt;P&gt;Note, you might have to use spath to get multi-value fields, then mvexpand to get events from each distinct set.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2013 13:28:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122267#M25308</guid>
      <dc:creator>sowings</dc:creator>
      <dc:date>2013-10-30T13:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122268#M25309</link>
      <description>&lt;P&gt;examples will pretty nice&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2014 17:57:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122268#M25309</guid>
      <dc:creator>tcoq</dc:creator>
      <dc:date>2014-01-06T17:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122269#M25310</link>
      <description>&lt;P&gt;examples you want....so you probably did not read the docs then &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; there are examples on how to use spath on XML and JSON -&amp;gt; &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.0.1/SearchReference/Spath#Examples"&gt;http://docs.splunk.com/Documentation/Splunk/6.0.1/SearchReference/Spath#Examples&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2014 06:58:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122269#M25310</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2014-01-07T06:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122270#M25311</link>
      <description>&lt;P&gt;This example does not address the question.  The example describes how to turn an event that has a field with multiple values into multiple events.  It does not describe how to turn an event with a JSON array into multiple events.  The difference is this:&lt;BR /&gt;
{   var : val1, var : val2, var : val3 }&lt;BR /&gt;&lt;BR /&gt;
vs this&lt;BR /&gt;
var : [val1, val2, val3].&lt;BR /&gt;
The example covers the first, the question concerns the second.  Does anyone know how to turn a single JSON event with an array of N sub-items into N events, each&lt;BR /&gt;
with one sub-item?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2014 16:37:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122270#M25311</guid>
      <dc:creator>prokopowicz</dc:creator>
      <dc:date>2014-07-22T16:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122271#M25312</link>
      <description>&lt;P&gt;You can do similar thing for JSON arrays as well using spath. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your base search | spath | rename actions{}.* as * |  |mvexpand id | dedup id | eval temp=mvzip(mvzip(mvzip(type,status,"#"),time_updated,"#"),amount,"#") | mvexpand temp | rex field=temp "(?&amp;lt;type&amp;gt;.*)#(?&amp;lt;status&amp;gt;.*)#(?&amp;lt;time_updated&amp;gt;.*)#(?&amp;lt;amount&amp;gt;.*)" | fields - temp | dedup id amount status time_updated type
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 22 Jul 2014 17:09:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122271#M25312</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-07-22T17:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122272#M25313</link>
      <description>&lt;P&gt;Can someone at least confirm whether this is possible or not?   (The question was: how to turn a single JSON event with an array of N sub-items into N events, during parsing, not at search time.)&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2016 20:50:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122272#M25313</guid>
      <dc:creator>madstop99</dc:creator>
      <dc:date>2016-08-25T20:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122273#M25314</link>
      <description>&lt;P&gt;yes it works as documented. You really have to read the documentation; and it works&lt;/P&gt;</description>
      <pubDate>Mon, 29 Aug 2016 22:30:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122273#M25314</guid>
      <dc:creator>naisanza</dc:creator>
      <dc:date>2016-08-29T22:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122274#M25315</link>
      <description>&lt;P&gt;naisanza, were you referring to the use of spath works?  Or, do you have hints/comment/method on what I need to do?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Aug 2016 05:09:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122274#M25315</guid>
      <dc:creator>madstop99</dc:creator>
      <dc:date>2016-08-30T05:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122275#M25316</link>
      <description>&lt;P&gt;It works.. but strange.. we need to copy as it is...&lt;BR /&gt;
if we give any spaces, its not working... &lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2016 18:58:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122275#M25316</guid>
      <dc:creator>skota524</dc:creator>
      <dc:date>2016-10-06T18:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122276#M25317</link>
      <description>&lt;P&gt;I downvoted this post because a link to documentation does not answer the question.  including an example would be more helpful.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jan 2018 21:58:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122276#M25317</guid>
      <dc:creator>TonyLeeVT</dc:creator>
      <dc:date>2018-01-15T21:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122277#M25318</link>
      <description>&lt;P&gt;Maybe this example &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Spath#Basic_examples"&gt;http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Spath#Basic_examples&lt;/A&gt; or this &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Spath#Extended_examples"&gt;http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Spath#Extended_examples&lt;/A&gt; is more suitable as example? &lt;/P&gt;</description>
      <pubDate>Mon, 15 Jan 2018 22:12:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122277#M25318</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2018-01-15T22:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122278#M25319</link>
      <description>&lt;P&gt;The answers here were not helping me. The expanded examples in the spath doc were helpful, but as an exercise I wanted to work through this. SO came up with this that seems to be what you want:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults
| eval _raw="{
   \"id\":\"123412341234\",
   \"actions\": [ 
     {
       \"type\":\"a\",
       \"status\":\"b\",
       \"amount\": 1,
       \"time_updated\": \"2013-10-14T11:00\"
     },
     {
       \"type\":\"c\",
       \"status\":\"d\",
       \"amount\": 1,
       \"time_updated\": \"2013-10-14T12:00\"
     }
   ]
 }"
 | spath
 | rename "actions{}.type" AS type
 | rename "actions{}.status" AS status
 | rename "actions{}.time_updated" AS time_updated
 | rename "actions{}.amount" AS amount
 | eval zipped=mvzip( time_updated, mvzip( type, mvzip( status, amount ) ))
 | mvexpand zipped
 | eval zipped=split( zipped, "," )
 | eval time_updated=mvindex( zipped, 0 )
 | eval type=mvindex( zipped, 1 )
 | eval status=mvindex( zipped, 2 )
 | eval amount=mvindex( zipped, 3 )
 | table time_updated, id, type, status, amount
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Cheers.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Apr 2018 18:59:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122278#M25319</guid>
      <dc:creator>tdepuy</dc:creator>
      <dc:date>2018-04-17T18:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122279#M25320</link>
      <description>&lt;P&gt;how about the dynamic field name?&lt;BR /&gt;
such as :&lt;BR /&gt;
 {"Troj/DocDl-QUA": 4, "CXmail/OleDl-AU": 44, "CXmail/EncDoc-B": 6, "Troj/DocDl-QVV": 10, "Troj/DocDl-QVQ": 10, "Troj/DocDl-QWV": 7, "CXmail/OleDl-AD": 341, "Troj/DocDl-QWN": 25, "Troj/DocDl-QVF": 4, "Troj/DocDl-QVC": 8}&lt;/P&gt;

&lt;P&gt;{"Troj/DocDl-QUA": 4, "CXmail/OleDl-AU": 591, "Troj/DocDl-QOQ": 10, "Troj/DocDl-QUE": 9, "Troj/RtfExp-EQ": 1, "Troj/DocDl-QTD": 5, "Troj/DocDl-QUI": 21, "CXmail/OleDl-AD": 868, "CXmail/OleDl-V": 9, "Troj/PDFDown-X": 4} &lt;/P&gt;

&lt;P&gt;I want to transfer it like:&lt;BR /&gt;
 Troj/DocDl-QUA         4&lt;BR /&gt;
 CXmail/OleDl-AU        44&lt;BR /&gt;
 CXmail/EncDoc-B        6&lt;BR /&gt;
 Troj/DocDl-QVV         10&lt;BR /&gt;
 Troj/DocDl-QVQ         10&lt;BR /&gt;
 Troj/DocDl-QWV         7&lt;BR /&gt;
 CXmail/OleDl-AD        341&lt;BR /&gt;
 Troj/DocDl-QWN         25&lt;BR /&gt;
 Troj/DocDl-QVF         4&lt;BR /&gt;
 Troj/DocDl-QVC         8&lt;BR /&gt;
 Troj/DocDl-QUA         4&lt;BR /&gt;
 CXmail/OleDl-AU        591&lt;BR /&gt;
 Troj/DocDl-QOQ         10&lt;BR /&gt;
 Troj/DocDl-QUE         9&lt;BR /&gt;
 Troj/RtfExp-EQ         1&lt;BR /&gt;
 Troj/DocDl-QTD         5&lt;BR /&gt;
 Troj/DocDl-QUI         21&lt;BR /&gt;
 CXmail/OleDl-AD        868&lt;BR /&gt;
 CXmail/OleDl-V         9&lt;BR /&gt;
 Troj/PDFDown-X         4&lt;/P&gt;

&lt;P&gt;so I can sum the same virus type and draw chart. Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 20:45:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122279#M25320</guid>
      <dc:creator>haoban</dc:creator>
      <dc:date>2018-12-13T20:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122280#M25321</link>
      <description>&lt;P&gt;Awesome, precisely what I needed!&lt;/P&gt;</description>
      <pubDate>Mon, 04 Feb 2019 11:41:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122280#M25321</guid>
      <dc:creator>piotrjustyna</dc:creator>
      <dc:date>2019-02-04T11:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122281#M25322</link>
      <description>&lt;P&gt;Trying with a different approach to making search easy. Just using the required portion of JSON content in &lt;CODE&gt;spath&lt;/CODE&gt;,  &lt;CODE&gt;kv&lt;/CODE&gt; and rocking. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults
 | eval _raw="{
    \"id\":\"123412341234\",
    \"actions\": [ 
      {
        \"type\":\"a\",
        \"status\":\"b\",
        \"amount\": 1,
        \"time_updated\": \"2013-10-14T11:00\"
      },
      {
        \"type\":\"c\",
        \"status\":\"d\",
        \"amount\": 1,
        \"time_updated\": \"2013-10-14T12:00\"
      }
    ]
  }" | spath
  | spath path=actions{} output=actions | mvexpand actions | eval _raw=actions | kv  | table time_updated, id, type, status, amount
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;UPDATED:  Replacing &lt;CODE&gt;mvexpand&lt;/CODE&gt; with &lt;CODE&gt;stats&lt;/CODE&gt; command.&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults
  | eval _raw="{
     \"id\":\"123412341234\",
     \"actions\": [ 
       {
         \"type\":\"a\",
         \"status\":\"b\",
         \"amount\": 1,
         \"time_updated\": \"2013-10-14T11:00\"
       },
       {
         \"type\":\"c\",
         \"status\":\"d\",
         \"amount\": 1,
         \"time_updated\": \"2013-10-14T12:00\"
       }
     ]
   }" | spath
   | spath path=actions{} output=actions | stats count by id,actions | eval _raw=actions | kv  | table time_updated, id, type, status, amount
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 04 Feb 2019 15:45:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122281#M25322</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2019-02-04T15:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122282#M25323</link>
      <description>&lt;P&gt;best solution on this page. thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2020 22:50:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122282#M25323</guid>
      <dc:creator>twinspop</dc:creator>
      <dc:date>2020-01-27T22:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122283#M25324</link>
      <description>&lt;P&gt;Thanks @twinspop &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2020 04:14:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/122283#M25324</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2020-01-28T04:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to split the json array into multiple new events</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/539349#M90356</link>
      <description>&lt;P&gt;Although these two different approaches yield the same results; the underlying mechanism is different that using "stats" could push too much data to the search head(s) and results in an auto finalized search due to search disk quota.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;mvexpand is a distributed streaming command (done at indexing layer) whereas stats is transforming commands (done at search head layer).&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.1.2/Search/Typesofcommands" target="_blank" rel="noopener"&gt;https://docs.splunk.com/Documentation/Splunk/8.1.2/Search/Typesofcommands&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Feb 2021 17:30:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-split-the-json-array-into-multiple-new-events/m-p/539349#M90356</guid>
      <dc:creator>jenipherc</dc:creator>
      <dc:date>2021-02-11T17:30:14Z</dc:date>
    </item>
  </channel>
</rss>

