<?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: index time extraction in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/index-time-extraction/m-p/319431#M160029</link>
    <description>&lt;P&gt;This is still broken.  I have reformatted your code block in your original text.  Go back in and DO NOT change the indenting but check/fix the character strings.&lt;/P&gt;</description>
    <pubDate>Tue, 25 Jul 2017 00:37:20 GMT</pubDate>
    <dc:creator>woodcock</dc:creator>
    <dc:date>2017-07-25T00:37:20Z</dc:date>
    <item>
      <title>index time extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/index-time-extraction/m-p/319428#M160026</link>
      <description>&lt;P&gt;I have to discard keyvalue pair from a event to null queue during index time extraction .Also there are certain key value pairs that i want to extract using &lt;CODE&gt;Extract&lt;/CODE&gt; .My extract in props.conf is working file but the transform is not working .&lt;BR /&gt;
here is the configuration:-&lt;/P&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;TRANSFORM-null = setnull
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[setnull]
[ignore]
REGEX = cs\d+Label\=(.*?(?=(?:\s[\w.:\[\]]+=|$)))
REPEAT_MATCH = True
DEST_Key=queue
FORMAT=nullQueue
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;for &lt;CODE&gt;belo&lt;/CODE&gt; kind of keyvalue pair is sending the whole event to &lt;CODE&gt;nullQueue&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;cs5Label=EventId
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Any solution?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2017 02:28:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/index-time-extraction/m-p/319428#M160026</guid>
      <dc:creator>aab5272</dc:creator>
      <dc:date>2017-07-19T02:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: index time extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/index-time-extraction/m-p/319429#M160027</link>
      <description>&lt;P&gt;You should edit your post and use for config file content the little &lt;CODE&gt;Code 101010&lt;/CODE&gt; button or select the text and press &lt;CODE&gt;CTRL-K&lt;/CODE&gt; this will keep everything as code.&lt;/P&gt;

&lt;P&gt;Like your &lt;CODE&gt;[setnull]&lt;/CODE&gt; stanza is empty, is that lost because of the formatting or is there actually nothing?&lt;/P&gt;

&lt;P&gt;cheers, MuS&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2017 03:52:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/index-time-extraction/m-p/319429#M160027</guid>
      <dc:creator>MuS</dc:creator>
      <dc:date>2017-07-19T03:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: index time extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/index-time-extraction/m-p/319430#M160028</link>
      <description>&lt;P&gt;consider below configuration.&lt;/P&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;P&gt;TRANSFORM-null = setnull&lt;/P&gt;

&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;P&gt;[setnull]&lt;BR /&gt;
REGEX = cs\d+Label=(.*?(?=(?:\s[\w.:[]]+=|$)))&lt;BR /&gt;
REPEAT_MATCH = True&lt;BR /&gt;
DEST_Key=queue&lt;BR /&gt;
FORMAT=nullQueue&lt;/P&gt;

&lt;P&gt;for below kind of keyvalue pair is sending the whole event to nullQueue&lt;/P&gt;

&lt;P&gt;cs5Label=EventId&lt;/P&gt;

&lt;P&gt;Any solution?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 14:56:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/index-time-extraction/m-p/319430#M160028</guid>
      <dc:creator>aab5272</dc:creator>
      <dc:date>2020-09-29T14:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: index time extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/index-time-extraction/m-p/319431#M160029</link>
      <description>&lt;P&gt;This is still broken.  I have reformatted your code block in your original text.  Go back in and DO NOT change the indenting but check/fix the character strings.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2017 00:37:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/index-time-extraction/m-p/319431#M160029</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-07-25T00:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: index time extraction</title>
      <link>https://community.splunk.com/t5/Splunk-Search/index-time-extraction/m-p/319432#M160030</link>
      <description>&lt;P&gt;In props.conf you've got the wrong key:&lt;/P&gt;

&lt;P&gt;TRANSFORM-null = setnull&lt;/P&gt;

&lt;P&gt;Should be&lt;/P&gt;

&lt;P&gt;TRANSFORMS-null = setnull&lt;/P&gt;

&lt;P&gt;I did the same thing about a month ago and I lost 4 hours of my life or more... vowed never to forget it again and so I spotted it right away on your post.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2017 01:32:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/index-time-extraction/m-p/319432#M160030</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2017-07-25T01:32:53Z</dc:date>
    </item>
  </channel>
</rss>

