<?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 large combi JSON array into individual events during index time in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700441#M115995</link>
    <description>&lt;P&gt;You're thinking in wrong order. That's why I'm saying it's not possible with Splunk alone.&lt;/P&gt;&lt;P&gt;If you don't know this one, it's one of the mainstays of understanding of Splunk indexing process- &lt;A href="https://community.splunk.com/t5/Getting-Data-In/Diagrams-of-how-indexing-works-in-the-Splunk-platform-the-Masa/m-p/590774" target="_blank"&gt;https://community.splunk.com/t5/Getting-Data-In/Diagrams-of-how-indexing-works-in-the-Splunk-platform-the-Masa/m-p/590774&lt;/A&gt;&lt;/P&gt;&lt;P&gt;As you can see, line breaking is one of the absolute first things happening with the input stream. You can't "backtrack" your way within the ingestion pipeline to do SEDCMD before line breaking.&lt;/P&gt;&lt;P&gt;And, as I wrote already, it's really a very bad idea to tackle structured data with regexes.&lt;/P&gt;</description>
    <pubDate>Sat, 28 Sep 2024 17:54:12 GMT</pubDate>
    <dc:creator>PickleRick</dc:creator>
    <dc:date>2024-09-28T17:54:12Z</dc:date>
    <item>
      <title>How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700194#M115957</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have this compressed (reduced version of large structure) which is a combination of basic text and JSON:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="java"&gt;2024-07-10 07:27:28 +02:00 LiveEvent: {"data":{"time_span_seconds":300,
	"active":17519,
	"total":17519,
	"unique":4208,
	"total_prepared":16684,
	"unique_prepared":3703,
	"created":594,
	"updated":0,
	"deleted":0,"ports":[
		{"stock_id":49,
			"goods_in":0,
			"picks":2,
			"inspection_or_adhoc":0,
			"waste_time":1,
			"wait_bin":214,
			"wait_user":66,
			"stock_open_seconds":281,
			"stock_closed_seconds":19,
			"bins_above":0,
			"completed":[43757746,43756193],
			"content_codes":[],
			"category_codes":[{"category_code":4,"count":2}]},
		{"stock_id":46,
			"goods_in":0,
			"picks":1,
			"inspection_or_adhoc":0,
			"waste_time":0,
			"wait_bin":2,
			"wait_user":298,
			"stock_open_seconds":300,
			"stock_closed_seconds":0,
			"bins_above":0,
			"completed":[43769715],
			"content_codes":[],
			"category_codes":[{"category_code":4,"count":1}]},
		{"stock_id":1,
			"goods_in":0,
			"picks":3,
			"inspection_or_adhoc":0,
			"waste_time":0,
			"wait_bin":191,
			"wait_user":40,
			"stock_open_seconds":231,
			"stock_closed_seconds":69,
			"bins_above":0,
			"completed":[43823628,43823659,43823660],
			"content_codes":[],
			"category_codes":[{"category_code":1,"count":3}]}
	]},
	"uuid":"8711336c-ddcd-432f-b388-8b3940ce151a",
	"session_id":"d14fbee3-0a7a-4026-9fbf-d90eb62d0e73",
	"session_sequence_number":5113,
	"version":"2.0.0",
	"installation_id":"a031v00001Bex7fAAB",
	"local_installation_timestamp":"2024-07-10T07:35:00.0000000+02:00",
	"date":"2024-07-10",
	"app_server_timestamp":"2024-07-10T07:27:28.8839856+02:00",
	"event_type":"STOCK_AND_PILE"}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I eventually need each “stock_id” ending up as an individual event, and keep the common information along with it like: timestamp, uuid, session_id, session_sequence_number and event_type.&lt;BR /&gt;&lt;BR /&gt;Can someone guide me how to use props and transforms to achieve this?&lt;BR /&gt;&lt;BR /&gt;PS. I have read through several great posts on how to split JSON arrays into events, but none about how to keep common fields in each of them.&lt;BR /&gt;&lt;BR /&gt;Many thanks in advance.&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Bjarne&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 11:24:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700194#M115957</guid>
      <dc:creator>BTrust</dc:creator>
      <dc:date>2024-09-26T11:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700198#M115958</link>
      <description>&lt;P&gt;TL&amp;amp;DR - you can't split events within Splunk itself during ingestion.&lt;/P&gt;&lt;P&gt;Longer explanation - each event is processed as a single entity. You could try to do a copy of the event using CLONE_SOURCETYPE and then process each of those instances separately (for example - cut some part from one copy but other part from another copy) but it's not something that can be reasonably implemented, it's unmaintaineable in the long run and you can't do it dynamically (like split a json into however many items an array has). Oh, and of course structured data manipulation in ingest time is a relatively big no-no.&lt;/P&gt;&lt;P&gt;So your best bet would be to pre-process your data with a third-party tool. (or at least write a scripted input doing the heavy lifting of splitting the data).&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 12:05:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700198#M115958</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-09-26T12:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700201#M115959</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231884"&gt;@PickleRick&lt;/a&gt;,&lt;BR /&gt;Thanks for your feedback, though I’m surprised with the answer, as I’ve seen other clear indication and solution to splitting JSON arrays to individual events like:&amp;nbsp;&lt;A href="https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.splunk.com%2Ft5%2FGetting-Data-In%2FHow-to-parse-a-JSON-array-delimited-by-quot-quot-into-separate%2Fm-p%2F279457%23M53499&amp;amp;data=05%7C02%7C%7C63bd33b90ccd43a02c2f08dcd562e661%7Cdbaef1534a3e40cd83cbc5e2e1c6a48a%7C0%7C0%7C638619867964427888%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;amp;sdata=ojjfyc8sH8WCzVkUtxIaIufpmkgRCIMih%2BzicZ57coU%3D&amp;amp;reserved=0" target="_blank" rel="noopener"&gt;How to parse a JSON array delimited by "," into separate events with their unique timestamps?&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 12:12:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700201#M115959</guid>
      <dc:creator>BTrust</dc:creator>
      <dc:date>2024-09-26T12:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700203#M115960</link>
      <description>&lt;P&gt;And btw this one:&amp;nbsp;&lt;A href="https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.splunk.com%2Ft5%2FSplunk-Search%2FHow-to-split-JSON-array-into-Multiple-events-at-Index-Time%2Fm-p%2F390397%23M113705&amp;amp;data=05%7C02%7C%7C8ea17299749d40e5def708dcd560e8cd%7Cdbaef1534a3e40cd83cbc5e2e1c6a48a%7C0%7C0%7C638619859411113971%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;amp;sdata=%2B6Ok07vnl2Rvi6ytrmoMVDZAL1nkuyXmuzDymFpKFQc%3D&amp;amp;reserved=0" target="_self"&gt;How to split JSON array into Multiple events at Index Time?&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 12:14:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700203#M115960</guid>
      <dc:creator>BTrust</dc:creator>
      <dc:date>2024-09-26T12:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700204#M115961</link>
      <description>&lt;P&gt;I'm not sure it can be done reliably using props and transforms.&amp;nbsp; I'd use a scripted input to parse the data and re-format it.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 12:14:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700204#M115961</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2024-09-26T12:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700207#M115963</link>
      <description>&lt;P&gt;That one relies on the fact that it was a simple array and could be cut with regexes into pieces. The splitting mechanism would break apart if the data changed - for example if there was another field added except the "local" one to the "outer" json.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 12:27:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700207#M115963</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-09-26T12:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700209#M115964</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/213957"&gt;@richgalloway&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Thanks for your input.&lt;BR /&gt;Do you happen to have any scripting ideas for this?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 12:39:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700209#M115964</guid>
      <dc:creator>BTrust</dc:creator>
      <dc:date>2024-09-26T12:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700211#M115965</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231884"&gt;@PickleRick&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;The JSON structure is very solid, and don’t change, except there can be many (+1000) or few (4) “stock_id”.&lt;BR /&gt;&lt;BR /&gt;You talked about scripting inputs as well, do you have any suggestions/examples?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 12:44:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700211#M115965</guid>
      <dc:creator>BTrust</dc:creator>
      <dc:date>2024-09-26T12:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700212#M115966</link>
      <description>&lt;P&gt;Your case is completely different because you want to keep some of the "outer" information shared between separate events (which actually isn't that good idea because your license usage will get multiplied on those events).&lt;/P&gt;&lt;P&gt;As for the scripted input - see those resources for technicalities from Splunk side. Of course the internals - splitting the event - is entirely up to you.&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/AdvancedDev/ScriptSetup" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/latest/AdvancedDev/ScriptSetup&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://dev.splunk.com/enterprise/docs/developapps/manageknowledge/custominputs" target="_blank"&gt;https://dev.splunk.com/enterprise/docs/developapps/manageknowledge/custominputs&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 12:48:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700212#M115966</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-09-26T12:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700215#M115967</link>
      <description>&lt;P&gt;The thing is, if se don’t split them at index time, the indexers will have even more work to do, as the structures can be huge.&lt;BR /&gt;&lt;BR /&gt;PS. I’m aware of the extra license usage here as well.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 13:05:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700215#M115967</guid>
      <dc:creator>BTrust</dc:creator>
      <dc:date>2024-09-26T13:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700223#M115969</link>
      <description>&lt;P&gt;I have nothing specific to offer.&amp;nbsp; In a previous job, I used a Python script to parse data and then restructure it so it was easier for Splunk to ingest.&amp;nbsp; It wasn't JSON (I think it was XML), but still should be pretty straightforward.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 13:55:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700223#M115969</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2024-09-26T13:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700310#M115980</link>
      <description>&lt;P&gt;1. Please, don't post links butchered by some external "protection" service.&lt;/P&gt;&lt;P&gt;2. You get this wrong &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; Those articles don't describe splitting json events. They describe breaking input data stream so that it breaks on the "inner" json boundaries instead of the "outer" ones. It doesn't have anything to do with manipulating a single event already being broken from the input stream. It's siimilar to telling Splunk not to break the stream into lines but rather ingest something delimited by whitespaces separately. But your case is completely different because you want to carry over some common part (some common metadata I assume) from the outer json structure to each part extracted from the inner json array. This is way above the simple string-based manipulation that Splunk can do in the ingestion pipeline.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 07:34:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700310#M115980</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-09-27T07:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700338#M115983</link>
      <description>&lt;OL&gt;&lt;LI&gt;Thanks for the advice.&lt;/LI&gt;&lt;LI&gt;Well after working with Splunk for +10 years I frankly don’t agree with the “&lt;SPAN&gt;simple string-based manipulation that Splunk can in the ingestion pipe”, I’d say I’ve seen amazing (to the extend crazy) things done with props and transforms.&lt;BR /&gt;Said that, Splunk might not be able to do exactly what I’m after here, but I’m willing to spend time trying anyway, as this will have a major impact on the performance at search time.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN&gt;Yes, there are some meta data that need to stay with each event to be able to find them again.&lt;BR /&gt;I have some ideas in my head on how to twist this, but right now I’m on vacation, and can’t test them the next weeks time or so, so I’m just “warming up”, and looking for / listening in to others crazy ideas of what they have achieved in Splunk &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 14:13:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700338#M115983</guid>
      <dc:creator>BTrust</dc:creator>
      <dc:date>2024-09-27T14:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700351#M115985</link>
      <description>&lt;P&gt;It's not about "whose is longer". And yes, I've seen many interesting hacks but the fact remains - Splunk works one event at a time. So you can't "carry over" any info from one event to another using just props and transforms (except for that very very ugly and unmaintainable trick with actually cloning the event and separately modifying each copy). Also you cannot split an event (or merge it) after it's been through the line breaking/merging phase.&lt;/P&gt;&lt;P&gt;So you can't turn&lt;/P&gt;&lt;PRE&gt;{"whatever": ["a","b","c"], "something":"something"}&lt;/PRE&gt;&lt;P&gt;into&lt;/P&gt;&lt;PRE&gt;{"whatever": "a", "something":"something"}&lt;BR /&gt;{"whatever": "b", "something":"something"}&lt;BR /&gt;{"whatever": "c", "something":"something"}&lt;/PRE&gt;&lt;P&gt;Using props and transforms alone. Ingestion pipeline doesn't deal with structured data (with the exception of indexed extractions on UF but that's a different story).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 15:49:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700351#M115985</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-09-27T15:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700426#M115990</link>
      <description>&lt;P&gt;Longer than yesterday helps though &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Ok - here are some thoughts I had getting around this, without having a chance to play with it yet.&lt;BR /&gt;SEDCMD - looks as a possibility, while knowing it’s not going to be the newbie kind of thing. There is support for back ref, so I thought of coping a core meta field as an addition into each stock_id, and then split the structure to events by each stuck_id&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2024 13:54:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700426#M115990</guid>
      <dc:creator>BTrust</dc:creator>
      <dc:date>2024-09-28T13:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to split large combi JSON array into individual events during index time</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700441#M115995</link>
      <description>&lt;P&gt;You're thinking in wrong order. That's why I'm saying it's not possible with Splunk alone.&lt;/P&gt;&lt;P&gt;If you don't know this one, it's one of the mainstays of understanding of Splunk indexing process- &lt;A href="https://community.splunk.com/t5/Getting-Data-In/Diagrams-of-how-indexing-works-in-the-Splunk-platform-the-Masa/m-p/590774" target="_blank"&gt;https://community.splunk.com/t5/Getting-Data-In/Diagrams-of-how-indexing-works-in-the-Splunk-platform-the-Masa/m-p/590774&lt;/A&gt;&lt;/P&gt;&lt;P&gt;As you can see, line breaking is one of the absolute first things happening with the input stream. You can't "backtrack" your way within the ingestion pipeline to do SEDCMD before line breaking.&lt;/P&gt;&lt;P&gt;And, as I wrote already, it's really a very bad idea to tackle structured data with regexes.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2024 17:54:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-split-large-combi-JSON-array-into-individual-events/m-p/700441#M115995</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-09-28T17:54:12Z</dc:date>
    </item>
  </channel>
</rss>

