<?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 filter the index by using mulitple stanzas with different sources in props and transforms in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18494#M2518</link>
    <description>&lt;P&gt;Thank you for your help. Unfortunately, none of your answers are solving my issue. THe order is important, that's why I first filtered the events to nullQueue in my transforms.&lt;/P&gt;

&lt;P&gt;I still tried to remove setparsing2 but no success. Good spotting indeed on the Q in capital but unfortunately, that did not change anything.&lt;/P&gt;

&lt;P&gt;Thanks anyway Any other ideas ?&lt;/P&gt;

&lt;P&gt;Joffrey&lt;/P&gt;</description>
    <pubDate>Mon, 29 Apr 2013 14:27:25 GMT</pubDate>
    <dc:creator>joffrey_braban</dc:creator>
    <dc:date>2013-04-29T14:27:25Z</dc:date>
    <item>
      <title>How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18490#M2514</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
I would like to filter out some event logs coming from different forwarders.&lt;BR /&gt;
I have been able to filter out some specifics winevents coming from security log.&lt;BR /&gt;
Now I would like to optimize my indexing and filter other events from other sources like application events. &lt;BR /&gt;
It is not working when I am adding a new stanza in transforms.conf. Only winevent security is filtered out.&lt;/P&gt;

&lt;P&gt;Would you please have an idea ?&lt;BR /&gt;
Here is below my files:&lt;/P&gt;

&lt;P&gt;--------props-----&lt;/P&gt;

&lt;P&gt;[WinEventLog:Security]&lt;BR /&gt;
TRANSFORMS-Security=setnull,setparsing&lt;/P&gt;

&lt;P&gt;[WinEventLog:Application]&lt;BR /&gt;
TRANSFORMS-Application=setnull2,setparsing2&lt;/P&gt;

&lt;P&gt;-----------transforms-----------&lt;BR /&gt;
[setnull]&lt;BR /&gt;
REGEX = (?m).&lt;BR /&gt;
DEST_KEY = queue&lt;BR /&gt;
FORMAT = nullQueue&lt;/P&gt;

&lt;P&gt;[setnull2]&lt;BR /&gt;
REGEX = (?m)^Database_copy=(MailDB_14|MailDB_04)&lt;BR /&gt;
DEST_KEY = queue&lt;BR /&gt;
FORMAT = nullqueue&lt;/P&gt;

&lt;P&gt;[setparsing]&lt;BR /&gt;
REGEX = (?m)^EventCode=(5157|4625|4624|7036|1102|1033)&lt;BR /&gt;
DEST_KEY = queue&lt;BR /&gt;
FORMAT = indexQueue&lt;/P&gt;

&lt;P&gt;[setparsing2]&lt;BR /&gt;
REGEX =  (?m).&lt;BR /&gt;
DEST_KEY = queue&lt;BR /&gt;
FORMAT = indexQueue&lt;/P&gt;

&lt;P&gt;Thank you&lt;BR /&gt;
Joffrey&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 13:47:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18490#M2514</guid>
      <dc:creator>joffrey_braban</dc:creator>
      <dc:date>2020-09-28T13:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18491#M2515</link>
      <description>&lt;P&gt;The reason is that all events will pass through both transforms.&lt;/P&gt;

&lt;P&gt;So, first an event will go through &lt;CODE&gt;setnull2&lt;/CODE&gt; and some will be changed to nullQueue, but it will also be going through the next transform, &lt;CODE&gt;setparsing2&lt;/CODE&gt; which promptly restores its destination to &lt;CODE&gt;indexQueue&lt;/CODE&gt;. &lt;/P&gt;

&lt;P&gt;That's why the order is most important.&lt;/P&gt;

&lt;P&gt;Probably you should just remove the call for the &lt;CODE&gt;setparsing2&lt;/CODE&gt; transform in &lt;CODE&gt;props.conf&lt;/CODE&gt; stanza.&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/5.0.2/Deploy/Routeandfilterdatad#Discard_specific_events_and_keep_the_rest"&gt;http://docs.splunk.com/Documentation/Splunk/5.0.2/Deploy/Routeandfilterdatad#Discard_specific_events_and_keep_the_rest&lt;/A&gt;&lt;/P&gt;

&lt;HR /&gt;

&lt;P&gt;UPDATE:&lt;/P&gt;

&lt;P&gt;So that was it all along. The regex will work on the actual text in the event, not on the (search-time) parsed fields. Thus, your regex in &lt;CODE&gt;setnull2&lt;/CODE&gt; should be;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;REGEX = (?m)Database\scopy:\s+(MailDB_04|MailDB_14)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hope this helps,&lt;/P&gt;

&lt;P&gt;Kristian Kolb&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2013 08:51:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18491#M2515</guid>
      <dc:creator>kristian_kolb</dc:creator>
      <dc:date>2013-04-29T08:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18492#M2516</link>
      <description>&lt;P&gt;Also setnull2 has a typo - "nullqueue" instead of "nullQueue".&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2013 09:29:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18492#M2516</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-04-29T09:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18493#M2517</link>
      <description>&lt;P&gt;good spotting&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2013 09:42:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18493#M2517</guid>
      <dc:creator>kristian_kolb</dc:creator>
      <dc:date>2013-04-29T09:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18494#M2518</link>
      <description>&lt;P&gt;Thank you for your help. Unfortunately, none of your answers are solving my issue. THe order is important, that's why I first filtered the events to nullQueue in my transforms.&lt;/P&gt;

&lt;P&gt;I still tried to remove setparsing2 but no success. Good spotting indeed on the Q in capital but unfortunately, that did not change anything.&lt;/P&gt;

&lt;P&gt;Thanks anyway Any other ideas ?&lt;/P&gt;

&lt;P&gt;Joffrey&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2013 14:27:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18494#M2518</guid>
      <dc:creator>joffrey_braban</dc:creator>
      <dc:date>2013-04-29T14:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18495#M2519</link>
      <description>&lt;P&gt;I am still having the event Database_copy=(MailDB_14|MailDB_04) in my index.&lt;BR /&gt;
Thank you&lt;BR /&gt;
Joffrey&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 13:48:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18495#M2519</guid>
      <dc:creator>joffrey_braban</dc:creator>
      <dc:date>2020-09-28T13:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18496#M2520</link>
      <description>&lt;P&gt;I think you're having regex issues. You do realize that any event that matches the regex in the second transform (&lt;CODE&gt;(?m).&lt;/CODE&gt; and &lt;CODE&gt;setparsing2&lt;/CODE&gt;, respectively in your case) will be indexed?&lt;/P&gt;

&lt;P&gt;So if you have a &lt;CODE&gt;REGEX = .&lt;/CODE&gt; (or something to that effect) in the second transform, ALL events will match.&lt;/P&gt;

&lt;P&gt;So either you have both transforms, which will behave as described above, OR the &lt;CODE&gt;setnull2&lt;/CODE&gt; regex is NOT matching the events you want to filter out.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2013 16:38:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18496#M2520</guid>
      <dc:creator>kristian_kolb</dc:creator>
      <dc:date>2013-04-29T16:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18497#M2521</link>
      <description>&lt;P&gt;Thank you kristian. You oriented me on the good way as actually my regex is not working.&lt;BR /&gt;
I removed all the stanzas and kept only setnull2. My database_copy events are still not redirected to the queue.&lt;/P&gt;

&lt;P&gt;I dont know what am I doing wrong..&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2013 09:22:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18497#M2521</guid>
      <dc:creator>joffrey_braban</dc:creator>
      <dc:date>2013-04-30T09:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18498#M2522</link>
      <description>&lt;P&gt;I meant, still NOT redirected to the nullqueue sorry&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2013 09:23:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18498#M2522</guid>
      <dc:creator>joffrey_braban</dc:creator>
      <dc:date>2013-04-30T09:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18499#M2523</link>
      <description>&lt;P&gt;I have seen that the item "Database_copy" is a categorical value. Can it explain this issue ? Can I filter any type of values?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2013 09:34:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18499#M2523</guid>
      <dc:creator>joffrey_braban</dc:creator>
      <dc:date>2013-04-30T09:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18500#M2524</link>
      <description>&lt;P&gt;'Categorical value', what is that?&lt;/P&gt;

&lt;P&gt;One thing I would try in your case is to remove the caret (i.e. start of line) before the &lt;CODE&gt;Database_copy..&lt;/CODE&gt; &lt;/P&gt;

&lt;P&gt;Also, perhaps more important, is that you need to ensure that the regex matches the actual string in the event, and NOT a sanitized Splunk field, e.g. &lt;CODE&gt;Account Name&lt;/CODE&gt; in the log, will be called &lt;CODE&gt;Account_Name&lt;/CODE&gt; as a Splunk field. Could that be what you referred to as a categorical value?&lt;/P&gt;

&lt;P&gt;/k&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2013 09:53:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18500#M2524</guid>
      <dc:creator>kristian_kolb</dc:creator>
      <dc:date>2013-04-30T09:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18501#M2525</link>
      <description>&lt;P&gt;I meant that the "database_copy" field value is "categorical". Just as "eventcode" value is numeric. But maybe it's not related to my issue at all.&lt;/P&gt;

&lt;P&gt;I have paid attention to the field name in splunk and it's named this way: database_copy.&lt;/P&gt;

&lt;P&gt;I removed the caret but the events are still indexed. I am surprised because it works well with eventcode field.&lt;/P&gt;

&lt;P&gt;Thank you kristian for your help&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2013 12:10:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18501#M2525</guid>
      <dc:creator>joffrey_braban</dc:creator>
      <dc:date>2013-04-30T12:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18502#M2526</link>
      <description>&lt;P&gt;Note that the regexes here are applied to the raw event data, thus whatever fields Splunk makes of it has nothing to do with this. You should post some sample data so we can help you find a valid filter string - I suspect you've got some concepts mixed up here...&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2013 12:50:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18502#M2526</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-04-30T12:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18503#M2527</link>
      <description>&lt;P&gt;Joffrey. As I said before, and as Ayn suggests, I suspect that you're trying to use a field name called &lt;CODE&gt;Database_copy&lt;/CODE&gt; in your regex, but in the raw event text, it says &lt;CODE&gt;Database copy&lt;/CODE&gt;.&lt;/P&gt;

&lt;P&gt;That is a world of difference. Please post an actual event.&lt;/P&gt;

&lt;P&gt;/K&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2013 13:19:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18503#M2527</guid>
      <dc:creator>kristian_kolb</dc:creator>
      <dc:date>2013-04-30T13:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18504#M2528</link>
      <description>&lt;P&gt;Ok here is an event that i want to filter out.&lt;BR /&gt;
Thank you both.&lt;/P&gt;

&lt;P&gt;04/30/2013 03:16:38 PM&lt;BR /&gt;
LogName=Application&lt;BR /&gt;
SourceName=MSExchangeRepl&lt;BR /&gt;
EventCode=4113&lt;BR /&gt;
EventType=2&lt;BR /&gt;
Type=Error&lt;BR /&gt;
ComputerName=GCHEEX02&lt;BR /&gt;
TaskCategory=Service&lt;BR /&gt;
OpCode=None&lt;BR /&gt;
RecordNumber=2127847&lt;BR /&gt;
Keywords=Classic&lt;BR /&gt;
Message=Database redundancy health check failed.&lt;BR /&gt;
Database copy: MailDB_14&lt;BR /&gt;
Redundancy count: 1&lt;/P&gt;

&lt;P&gt;Error: The number of configured copies for database 'MailDB_14' (1) is less than the required redundancy count (2).&lt;/P&gt;

&lt;P&gt;Name                 Status RealCopyQueu InspectorQue  ReplayQueue      CIState&lt;BR /&gt;
                                       e           ue                          &lt;/P&gt;

&lt;HR /&gt;

&lt;P&gt;MailDB_14\GCH       Mounted            0            0            0      Healthy&lt;BR /&gt;
EEX02&lt;/P&gt;

&lt;P&gt;===============&lt;/P&gt;

&lt;H1&gt; Full Status &lt;/H1&gt;

&lt;P&gt;Identity                         : MailDB_14\GCHEEX02&lt;BR /&gt;
Name                             : MailDB_14\GCHEEX02&lt;BR /&gt;
DatabaseName                     : MailDB_14&lt;BR /&gt;
Status                           : Mounted&lt;BR /&gt;
MailboxServer                    : GCHEEX02&lt;BR /&gt;
ActiveDatabaseCopy               : gcheex02&lt;BR /&gt;
ActivationSuspended              : False&lt;BR /&gt;
ActionInitiator                  : Unknown&lt;BR /&gt;
ErrorMessage                     : &lt;BR /&gt;
ErrorEventId                     : &lt;BR /&gt;
ExtendedErrorInfo                : &lt;BR /&gt;
SuspendComment                   : &lt;BR /&gt;
SinglePageRestore                : 0&lt;BR /&gt;
ContentIndexState                : Healthy&lt;BR /&gt;
ContentIndexErrorMessage         : &lt;BR /&gt;
CopyQueueLength                  : 0&lt;BR /&gt;
ReplayQueueLength                : 0&lt;BR /&gt;
LatestAvailableLogTime           : &lt;BR /&gt;
LastCopyNotificationedLogTime    : &lt;BR /&gt;
LastCopiedLogTime                : &lt;BR /&gt;
LastInspectedLogTime             : &lt;BR /&gt;
LastReplayedLogTime              : &lt;BR /&gt;
LastLogGenerated                 : 0&lt;BR /&gt;
LastLogCopyNotified              : 0&lt;BR /&gt;
LastLogCopied                    : 0&lt;BR /&gt;
LastLogInspected                 : 0&lt;BR /&gt;
LastLogReplayed                  : 0&lt;BR /&gt;
LogsReplayedSinceInstanceStart   : 0&lt;BR /&gt;
LogsCopiedSinceInstanceStart     : 0&lt;BR /&gt;
LatestFullBackupTime             : &lt;BR /&gt;
LatestIncrementalBackupTime      : &lt;BR /&gt;
LatestDifferentialBackupTime     : &lt;BR /&gt;
LatestCopyBackupTime             : &lt;BR /&gt;
SnapshotBackup                   : &lt;BR /&gt;
SnapshotLatestFullBackup         : &lt;BR /&gt;
SnapshotLatestIncrementalBackup  : &lt;BR /&gt;
SnapshotLatestDifferentialBackup : &lt;BR /&gt;
SnapshotLatestCopyBackup         : &lt;BR /&gt;
LogReplayQueueIncreasing         : False&lt;BR /&gt;
LogCopyQueueIncreasing           : False&lt;BR /&gt;
OutstandingDumpsterRequests      : {}&lt;BR /&gt;
OutgoingConnections              : &lt;BR /&gt;
IncomingLogCopyingNetwork        : &lt;BR /&gt;
SeedingNetwork                   : &lt;BR /&gt;
ActiveCopy                       : True&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 13:48:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18504#M2528</guid>
      <dc:creator>joffrey_braban</dc:creator>
      <dc:date>2020-09-28T13:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18505#M2529</link>
      <description>&lt;P&gt;I have posted an event in a new answer. I was limited in characters number.&lt;BR /&gt;
Thanks again&lt;BR /&gt;
Jo&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2013 15:27:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18505#M2529</guid>
      <dc:creator>joffrey_braban</dc:creator>
      <dc:date>2013-04-30T15:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18506#M2530</link>
      <description>&lt;P&gt;see comment in my edited answer above.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2013 19:39:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18506#M2530</guid>
      <dc:creator>kristian_kolb</dc:creator>
      <dc:date>2013-04-30T19:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter the index by using mulitple stanzas with different sources in props and transforms</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18507#M2531</link>
      <description>&lt;P&gt;Thanks a million Kristian. I works perfectly. I had just to remove the stanza setparsing2.&lt;BR /&gt;
Thank you again&lt;BR /&gt;
Joffrey&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2013 09:49:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-the-index-by-using-mulitple-stanzas-with-different/m-p/18507#M2531</guid>
      <dc:creator>joffrey_braban</dc:creator>
      <dc:date>2013-05-01T09:49:26Z</dc:date>
    </item>
  </channel>
</rss>

