<?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 separate events by using props/transforms? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-separate-events-by-using-props-transforms/m-p/596855#M104188</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/245592"&gt;@nonya_54&lt;/a&gt;&amp;nbsp;- doing it from backend doesn't seem like a straight forward thing.&lt;/P&gt;&lt;P&gt;How you are collecting the data? If you are collecting it through script or something I would say you do it at that stage.&lt;/P&gt;&lt;P&gt;Doing it search time sounds still good as it will require less storage and license.&lt;/P&gt;</description>
    <pubDate>Sun, 08 May 2022 17:54:16 GMT</pubDate>
    <dc:creator>VatsalJagani</dc:creator>
    <dc:date>2022-05-08T17:54:16Z</dc:date>
    <item>
      <title>How to separate events by using props/transforms?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-separate-events-by-using-props-transforms/m-p/596769#M104185</link>
      <description>&lt;P&gt;I have logs that resemble the table below.&lt;/P&gt;
&lt;P&gt;index=linux sourcetype=group | table group group_id, users&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;group&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;group_id&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;users&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;splunk&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;1&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;admin, john, jill&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%"&gt;apache&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;2&lt;/TD&gt;
&lt;TD width="33.333333333333336%"&gt;sarah, bill&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like the events to be separated by individual users so it looks like the table below. Is there a way to utilize transforms/props to separate the events by each different user?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;index=linux sourcetype=group | table group group_id, users&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;group&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;group_id&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;users&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;splunk&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;1&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;admin&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;splunk&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;1&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;john&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;splunk&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;1&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;jill&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;apache&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;2&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;sarah&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;apache&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;2&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;bill&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Wed, 01 Apr 2026 16:39:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-separate-events-by-using-props-transforms/m-p/596769#M104185</guid>
      <dc:creator>nonya_54</dc:creator>
      <dc:date>2026-04-01T16:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to separate events by using props/transforms?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-separate-events-by-using-props-transforms/m-p/596771#M104186</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/245592"&gt;@nonya_54&lt;/a&gt;&amp;nbsp;- Try:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=linux sourcetype=group | table group group_id, users
| makemv users delim=","
| mvexpand users&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps!!!&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 17:53:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-separate-events-by-using-props-transforms/m-p/596771#M104186</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2022-05-06T17:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to separate events by using props/transforms?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-separate-events-by-using-props-transforms/m-p/596851#M104187</link>
      <description>&lt;P&gt;Hello. Thank you for the response. I would like to be able to utilize the backend of Splunk as opposed to an inline search for the desired results.&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 16:39:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-separate-events-by-using-props-transforms/m-p/596851#M104187</guid>
      <dc:creator>nonya_54</dc:creator>
      <dc:date>2022-05-08T16:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to separate events by using props/transforms?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-separate-events-by-using-props-transforms/m-p/596855#M104188</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/245592"&gt;@nonya_54&lt;/a&gt;&amp;nbsp;- doing it from backend doesn't seem like a straight forward thing.&lt;/P&gt;&lt;P&gt;How you are collecting the data? If you are collecting it through script or something I would say you do it at that stage.&lt;/P&gt;&lt;P&gt;Doing it search time sounds still good as it will require less storage and license.&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 17:54:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-separate-events-by-using-props-transforms/m-p/596855#M104188</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2022-05-08T17:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to separate events by using props/transforms?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-separate-events-by-using-props-transforms/m-p/596856#M104189</link>
      <description>&lt;P&gt;You cannot do that. That's the short answer. There is no sane way of doing auch thing. When the event goes through the whole ingestion/indexing pipeline it is a single event. You can manipulate it, you can redirect it, you can extract fields, overwrite some parts of its data... But you can't split it into multiple events. You cant join multiple events into one either.&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 20:41:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-separate-events-by-using-props-transforms/m-p/596856#M104189</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2022-05-08T20:41:36Z</dc:date>
    </item>
  </channel>
</rss>

