<?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: Where to find unmatched regex events? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440344#M125210</link>
    <description>&lt;P&gt;here is my props.conf&lt;/P&gt;

&lt;H1&gt;Sourcetype use by forwarder, use to separate all Sourcetypes in TX files&lt;/H1&gt;

&lt;P&gt;[unisourcetypetx]&lt;BR /&gt;
CHARSET=AUTO&lt;BR /&gt;
DATETIME_CONFIG=CURRENT&lt;BR /&gt;
NO_BINARY_CHECK=true&lt;BR /&gt;
SHOULD_LINEMERGE=true&lt;BR /&gt;
category=Custom&lt;BR /&gt;
disabled=false&lt;BR /&gt;
pulldown_type=true&lt;/P&gt;

&lt;H1&gt;TX Extraction&lt;/H1&gt;

&lt;P&gt;TRANSFORMS-forward-histmain = EXTRACT_TXHISTMAIN&lt;BR /&gt;
TRANSFORMS-set-sourcetype-histmain = SET_HISTMAIN&lt;BR /&gt;
TRANSFORMS-forward-histsub = EXTRACT_TXHISTSUB&lt;BR /&gt;
TRANSFORMS-set-sourcetype-histsub = SET_HISTSUB&lt;BR /&gt;
TRANSFORMS-forward-reghist = EXTRACT_TXREGHIST&lt;BR /&gt;
TRANSFORMS-set-sourcetype-reghist = SET_REGHIST&lt;BR /&gt;
TRANSFORMS-forward-invheader = EXTRACT_TXINVHEADER&lt;BR /&gt;
TRANSFORMS-set-sourcetype-invheader = SET_INVHEADER&lt;BR /&gt;
TRANSFORMS-forward-deposits = EXTRACT_TXDEPOSITS&lt;BR /&gt;
TRANSFORMS-set-sourcetype-deposits = SET_DEPOSITS&lt;BR /&gt;
TRANSFORMS-forward-invitems = EXTRACT_TXINVITEMS&lt;BR /&gt;
TRANSFORMS-set-sourcetype-invitems = SET_INVITEMS&lt;/P&gt;

&lt;P&gt;[TX_CORHISTMAIN]&lt;BR /&gt;
TRANSFORMS-corrupted-txhistmain = CORRUPTED_TXHISTMAIN&lt;BR /&gt;
TRANSFORMS-set-sourcetype-corhistmain = SET_CORHISTMAIN&lt;/P&gt;

&lt;P&gt;and  my sample transforms.conf&lt;BR /&gt;
[EXTRACT_TXHISTMAIN]&lt;BR /&gt;
REGEX = HISTMAIN\s+(\d+)?\s+(\d+)?\s+(\d+)?\s+(\d+)?\s+(\d+)?\s+(\d+\D\d+\D\d+)?\s+(\d+)?\s+(\d+\D\d+\D\d+)?\s+(\w+)?\s+(\w+)?\s+(\D?\d+\D\d+)?\s+(\D?\d+\D\d+)?\s+(\d+)?&lt;BR /&gt;
FORMAT = Transact::$1 Branch::$2 Register::$3 Cashier::$4 Receipt::$5 TranDate::$6 TranTime::$7 RepDate::$8 Mode::$9 TranType::$10 Items::$11 Amount::$12 Diners::$13&lt;BR /&gt;
WRITE_META = true&lt;BR /&gt;
SOURCE_KEY = _raw&lt;/P&gt;

&lt;P&gt;[CORRUPTED_TXHISTMAIN]&lt;BR /&gt;
REGEX = HISTMAIN\s+(\d+)?\s+(\d+)?\s+(\d+)?\s+(\d+)?\s+(\d+)?\s+(\d+\D\d+\D\d+)?\s+(\d+)?\s+(\d+\D\d+\D\d+)?\s+(\w+)?\s+(\w+)?\s+(\D?\d+\D\d+)?\s+(\D?\d+\D\d+)?\s+(\d+)?&lt;BR /&gt;
DEST_KEY = queue&lt;BR /&gt;
FORMAT = nullQueue&lt;/P&gt;

&lt;H1&gt;Setting a TXsourcetype at index time extraction&lt;/H1&gt;

&lt;P&gt;[SET_HISTMAIN]&lt;BR /&gt;
REGEX = ^(HISTMAIN)&lt;BR /&gt;
SOURCE_KEY = &lt;EM&gt;raw&lt;BR /&gt;
DEST_KEY = MetaData:Sourcetype&lt;BR /&gt;
FORMAT = sourcetype::TX&lt;/EM&gt;$1&lt;/P&gt;

&lt;P&gt;That structure of transformation is by using unisourcetypetx sourcetype to separate 1 file with different column headers into different sourcetypes by extracting the match index.In this case when I want to filter the unmatch regex and set to nullQueue I get the corrupted events but the match events didnt get indexed and when I set to index match data the unmatch didnt get index because I used both indexQueue and nullQueue and according to several test I can only used 1 of it but I want both of it to be indexed.  By the way In this test I used a batch file which monitors a single file with sourcetype already configured and will go directly to unisourcetypetx and will be extracted by transforms and props&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 23:38:39 GMT</pubDate>
    <dc:creator>ejmin</dc:creator>
    <dc:date>2020-09-29T23:38:39Z</dc:date>
    <item>
      <title>Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440340#M125206</link>
      <description>&lt;P&gt;I know this is a silly question but for some cases I need to know where the unmatched events go because my regex is to matched what I will index but there are some cases that the data will be corrupted so the events will not gonna match to my regex. For validation of the data I just need to see that corrupted events that didnt match my regex construction.&lt;/P&gt;

&lt;P&gt;Hope you guys can help me with this.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 09:58:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440340#M125206</guid>
      <dc:creator>ejmin</dc:creator>
      <dc:date>2019-03-14T09:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440341#M125207</link>
      <description>&lt;P&gt;Which regex are you referring to?&lt;BR /&gt;
Field extractions in props.conf, searchtime'rex' commands or nullQueue routing/event breaking in props/transforms?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 10:14:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440341#M125207</guid>
      <dc:creator>nickhills</dc:creator>
      <dc:date>2019-03-14T10:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440342#M125208</link>
      <description>&lt;P&gt;For my case it is in forwarder indextime regex because usually forwarder doesnt extract data so I put regex into my transforms.conf and the match events will go to a certain index my problem is how can I get the unmatch events because im pretty sure that events is corrupted and I need that data for some validation.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 10:26:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440342#M125208</guid>
      <dc:creator>ejmin</dc:creator>
      <dc:date>2019-03-14T10:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440343#M125209</link>
      <description>&lt;P&gt;Can you post the props.conf and transforms.conf stanzas you are referring to?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 10:29:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440343#M125209</guid>
      <dc:creator>nickhills</dc:creator>
      <dc:date>2019-03-14T10:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440344#M125210</link>
      <description>&lt;P&gt;here is my props.conf&lt;/P&gt;

&lt;H1&gt;Sourcetype use by forwarder, use to separate all Sourcetypes in TX files&lt;/H1&gt;

&lt;P&gt;[unisourcetypetx]&lt;BR /&gt;
CHARSET=AUTO&lt;BR /&gt;
DATETIME_CONFIG=CURRENT&lt;BR /&gt;
NO_BINARY_CHECK=true&lt;BR /&gt;
SHOULD_LINEMERGE=true&lt;BR /&gt;
category=Custom&lt;BR /&gt;
disabled=false&lt;BR /&gt;
pulldown_type=true&lt;/P&gt;

&lt;H1&gt;TX Extraction&lt;/H1&gt;

&lt;P&gt;TRANSFORMS-forward-histmain = EXTRACT_TXHISTMAIN&lt;BR /&gt;
TRANSFORMS-set-sourcetype-histmain = SET_HISTMAIN&lt;BR /&gt;
TRANSFORMS-forward-histsub = EXTRACT_TXHISTSUB&lt;BR /&gt;
TRANSFORMS-set-sourcetype-histsub = SET_HISTSUB&lt;BR /&gt;
TRANSFORMS-forward-reghist = EXTRACT_TXREGHIST&lt;BR /&gt;
TRANSFORMS-set-sourcetype-reghist = SET_REGHIST&lt;BR /&gt;
TRANSFORMS-forward-invheader = EXTRACT_TXINVHEADER&lt;BR /&gt;
TRANSFORMS-set-sourcetype-invheader = SET_INVHEADER&lt;BR /&gt;
TRANSFORMS-forward-deposits = EXTRACT_TXDEPOSITS&lt;BR /&gt;
TRANSFORMS-set-sourcetype-deposits = SET_DEPOSITS&lt;BR /&gt;
TRANSFORMS-forward-invitems = EXTRACT_TXINVITEMS&lt;BR /&gt;
TRANSFORMS-set-sourcetype-invitems = SET_INVITEMS&lt;/P&gt;

&lt;P&gt;[TX_CORHISTMAIN]&lt;BR /&gt;
TRANSFORMS-corrupted-txhistmain = CORRUPTED_TXHISTMAIN&lt;BR /&gt;
TRANSFORMS-set-sourcetype-corhistmain = SET_CORHISTMAIN&lt;/P&gt;

&lt;P&gt;and  my sample transforms.conf&lt;BR /&gt;
[EXTRACT_TXHISTMAIN]&lt;BR /&gt;
REGEX = HISTMAIN\s+(\d+)?\s+(\d+)?\s+(\d+)?\s+(\d+)?\s+(\d+)?\s+(\d+\D\d+\D\d+)?\s+(\d+)?\s+(\d+\D\d+\D\d+)?\s+(\w+)?\s+(\w+)?\s+(\D?\d+\D\d+)?\s+(\D?\d+\D\d+)?\s+(\d+)?&lt;BR /&gt;
FORMAT = Transact::$1 Branch::$2 Register::$3 Cashier::$4 Receipt::$5 TranDate::$6 TranTime::$7 RepDate::$8 Mode::$9 TranType::$10 Items::$11 Amount::$12 Diners::$13&lt;BR /&gt;
WRITE_META = true&lt;BR /&gt;
SOURCE_KEY = _raw&lt;/P&gt;

&lt;P&gt;[CORRUPTED_TXHISTMAIN]&lt;BR /&gt;
REGEX = HISTMAIN\s+(\d+)?\s+(\d+)?\s+(\d+)?\s+(\d+)?\s+(\d+)?\s+(\d+\D\d+\D\d+)?\s+(\d+)?\s+(\d+\D\d+\D\d+)?\s+(\w+)?\s+(\w+)?\s+(\D?\d+\D\d+)?\s+(\D?\d+\D\d+)?\s+(\d+)?&lt;BR /&gt;
DEST_KEY = queue&lt;BR /&gt;
FORMAT = nullQueue&lt;/P&gt;

&lt;H1&gt;Setting a TXsourcetype at index time extraction&lt;/H1&gt;

&lt;P&gt;[SET_HISTMAIN]&lt;BR /&gt;
REGEX = ^(HISTMAIN)&lt;BR /&gt;
SOURCE_KEY = &lt;EM&gt;raw&lt;BR /&gt;
DEST_KEY = MetaData:Sourcetype&lt;BR /&gt;
FORMAT = sourcetype::TX&lt;/EM&gt;$1&lt;/P&gt;

&lt;P&gt;That structure of transformation is by using unisourcetypetx sourcetype to separate 1 file with different column headers into different sourcetypes by extracting the match index.In this case when I want to filter the unmatch regex and set to nullQueue I get the corrupted events but the match events didnt get indexed and when I set to index match data the unmatch didnt get index because I used both indexQueue and nullQueue and according to several test I can only used 1 of it but I want both of it to be indexed.  By the way In this test I used a batch file which monitors a single file with sourcetype already configured and will go directly to unisourcetypetx and will be extracted by transforms and props&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:38:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440344#M125210</guid>
      <dc:creator>ejmin</dc:creator>
      <dc:date>2020-09-29T23:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440345#M125211</link>
      <description>&lt;P&gt;Ok, anything which matches the corrupted transform is dropped, and never indexed. &lt;/P&gt;

&lt;P&gt;You will have no record of them in Splunk at all. &lt;BR /&gt;
(Though if you still have the source log files, that data will still of course be in there)&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 12:40:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440345#M125211</guid>
      <dc:creator>nickhills</dc:creator>
      <dc:date>2019-03-14T12:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440346#M125212</link>
      <description>&lt;P&gt;Ahhmm.. ok sad to say I need to figure out how can it be indexed&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 12:45:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440346#M125212</guid>
      <dc:creator>ejmin</dc:creator>
      <dc:date>2019-03-14T12:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440347#M125213</link>
      <description>&lt;P&gt;Going forwards, you need to remove &lt;CODE&gt;DEST_KEY = queue&lt;BR /&gt;
FORMAT = nullQueue&lt;/CODE&gt; and instead write it to an index, as per the previous transforms stanza, but the historic data is gone. &lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 12:48:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440347#M125213</guid>
      <dc:creator>nickhills</dc:creator>
      <dc:date>2019-03-14T12:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440348#M125214</link>
      <description>&lt;P&gt;Actually, just comment out &lt;CODE&gt;TRANSFORMS-corrupted-txhistmain = CORRUPTED_TXHISTMAIN&lt;/CODE&gt; from props.conf and it will end up in the same index, if that’s what you want?&lt;/P&gt;

&lt;P&gt;If you want it in a different index, let me know. &lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 12:55:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440348#M125214</guid>
      <dc:creator>nickhills</dc:creator>
      <dc:date>2019-03-14T12:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440349#M125215</link>
      <description>&lt;P&gt;Hmmm... the reason why I put that is because when My regex match all the data it will go to the nullQueue and the only event that will index is the corrupted events &lt;BR /&gt;
Note: the corrupted events doesnt have a pattern that is needed to match so thats why I used nullQueue because It index what is unmatch in the regex and that thing affects my indexQueue in indexing what I also needed events&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 12:57:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440349#M125215</guid>
      <dc:creator>ejmin</dc:creator>
      <dc:date>2019-03-14T12:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440350#M125216</link>
      <description>&lt;P&gt;I also tried that thing the result was the corrupted events didnt indexed because it didnt match the my regex in indexQueue part&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 13:01:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440350#M125216</guid>
      <dc:creator>ejmin</dc:creator>
      <dc:date>2019-03-14T13:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440351#M125217</link>
      <description>&lt;P&gt;Can you post the indexQueue config - that was not in your post.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 13:50:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440351#M125217</guid>
      <dc:creator>nickhills</dc:creator>
      <dc:date>2019-03-14T13:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440352#M125218</link>
      <description>&lt;P&gt;Ohh that thing Sorry i just said indexQueue to make it more clear because my transforms doesnt have indexQueue but its functionality is also the same because of the WRITE_META = true that directs the matches data to the index&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 14:25:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440352#M125218</guid>
      <dc:creator>ejmin</dc:creator>
      <dc:date>2019-03-14T14:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440353#M125219</link>
      <description>&lt;P&gt;oh, sorry I misunderstood.&lt;/P&gt;

&lt;P&gt;Just to check..&lt;BR /&gt;
You match a line which starts with 'HISTMAIN' against two transforms - EXTRACT_TXHISTMAIN, and SET_HISTMAIN&lt;BR /&gt;
The first one performs field extractions.&lt;BR /&gt;
The second one sets the sourcetype to 'TXHISTMAIN' &lt;/P&gt;

&lt;P&gt;When you talk about 'corrupted' events, do you mean lines which do not begin 'HISTMAIN', or do you mean events which &lt;EM&gt;DO&lt;/EM&gt; match 'HISTMAIN' but don't match the extraction regex?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:41:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440353#M125219</guid>
      <dc:creator>nickhills</dc:creator>
      <dc:date>2020-09-29T23:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440354#M125220</link>
      <description>&lt;P&gt;Yes thats right thats what exactly the problem I want to solve ... its like the line that matches the histmain but it got corrupted lets just say there are tabs that didnt generate or a field that is not its data type for example a transaction number field and because the tab was not generate the field got the wrong data for example the data generated will be a string instead of a digit or number... the unmatch data where the extraction did not met because of the corrupted events thats what I want to index without affecting the other extraction&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 15:03:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440354#M125220</guid>
      <dc:creator>ejmin</dc:creator>
      <dc:date>2019-03-14T15:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440355#M125221</link>
      <description>&lt;P&gt;Ok, so unless I am overlooking something obvious (it's been a long day) your config looks good to me.&lt;/P&gt;

&lt;P&gt;What happens if you search &lt;CODE&gt;sourcetype=txhistmain (NOT Transact=* NOT Branch=*)&lt;/CODE&gt; over all time, do you see any events?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 15:12:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440355#M125221</guid>
      <dc:creator>nickhills</dc:creator>
      <dc:date>2019-03-14T15:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440356#M125222</link>
      <description>&lt;P&gt;Hmmm thats also an option but for my case I have more than 10 billion events so if I search all time to figure out what corrupted events it will take too long before I get the result and besides it also has 100+ different fields..&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 15:20:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440356#M125222</guid>
      <dc:creator>ejmin</dc:creator>
      <dc:date>2019-03-14T15:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440357#M125223</link>
      <description>&lt;P&gt;10Bil - ha that's nothing &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;BR /&gt;
Pick a smaller range then - if you get any results then I you are already indexing the 'corrupt' data&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 15:25:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440357#M125223</guid>
      <dc:creator>nickhills</dc:creator>
      <dc:date>2019-03-14T15:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440358#M125224</link>
      <description>&lt;P&gt;Actually I didnt tried to search in prod server instead i used a test server before i push my configs I did a several test with corrupted events indicated in the file but that certain events did not indexed because it didnt match the histmain regex so its like a filtration process but I only get either 1 of those either the events I should be indexed or the events that the unmatch because I realize that transforming/extracting the data is just like piping the search in splunk that when you do a base search the transform that you can able to transform is only the base search and so on like when you do a nullQueue the other events that is ignore will not be retrieve because you already transform it in indextime&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2019 15:38:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440358#M125224</guid>
      <dc:creator>ejmin</dc:creator>
      <dc:date>2019-03-14T15:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Where to find unmatched regex events?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440359#M125225</link>
      <description>&lt;P&gt;If you are trying to look for events at search time, you can try the command "regex" and do a negative matching.&lt;/P&gt;

&lt;P&gt;example to find matching events&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;mysearch&amp;gt; | regex _raw="myregex"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and to find not matching events&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;mysearch&amp;gt; | regex _raw!="myregex"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 Mar 2019 21:30:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Where-to-find-unmatched-regex-events/m-p/440359#M125225</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2019-03-14T21:30:52Z</dc:date>
    </item>
  </channel>
</rss>

