<?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 do a field extraction on the source field? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125871#M34034</link>
    <description>&lt;P&gt;Not sure what I'm doing wrong here... followed what you have...&lt;/P&gt;

&lt;P&gt;props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[sourcetype::vds_access]
ANNOTATE_PUNCT = false
KV_MODE = auto
LINE_BREAKER = ([\r\n]+).\d{4}-\d{2}-\d{2}
MAX_TIMESTAMP_LOOKAHEAD = 30
NO_BINARY_CHECK = 1
SHOULD_LINEMERGE = false
TIME_FORMAT = %Y-%m-%dT%H:%M:%S.%3N
TIME_PREFIX = ^.
TRUNCATE = 999999
REPORT-vdsaccessExtract = vdsHost_extract

[sourcetype::vds_diagnostic]
ANNOTATE_PUNCT = false
KV_MODE = auto
LINE_BREAKER = ([\r\n]+).\d{4}-\d{2}-\d{2}
MAX_TIMESTAMP_LOOKAHEAD = 30
NO_BINARY_CHECK = 1
SHOULD_LINEMERGE = false
TIME_FORMAT = %Y-%m-%dT%H:%M:%S.%3N
TIME_PREFIX = ^.
TRUNCATE = 999999
REPORT-vdsdiagExtract = vdsHost_extract
pulldown_type = 1
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[vdsHost_extract]
REGEX = instances\/(?[^\/]+)
SOURCE_KEY = source
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I pushed these out via the cluster manager, but still don't see the field. &lt;/P&gt;</description>
    <pubDate>Wed, 04 Feb 2015 14:58:14 GMT</pubDate>
    <dc:creator>a212830</dc:creator>
    <dc:date>2015-02-04T14:58:14Z</dc:date>
    <item>
      <title>How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125852#M34015</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I need to create a field on the source field, but am not sure how to do that.  Can someone help me? &lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2015 17:48:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125852#M34015</guid>
      <dc:creator>a212830</dc:creator>
      <dc:date>2015-02-03T17:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125853#M34016</link>
      <description>&lt;P&gt;Hi @a212830&lt;/P&gt;

&lt;P&gt;Would you be able to provide sample data and what exactly you're trying to extract from the source field so users have more content to work with?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2015 17:51:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125853#M34016</guid>
      <dc:creator>ppablo</dc:creator>
      <dc:date>2015-02-03T17:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125854#M34017</link>
      <description>&lt;P&gt;Sure.  We have hosts that report on multiple instance, which have log files and need to be reported on differently.  Here are two samples:&lt;/P&gt;

&lt;P&gt;/apps/oracle/install/admin/instances/ovdprtp2a/diagnostics/logs/OVD/ovd1/diagnostic.log&lt;/P&gt;

&lt;P&gt;/apps/oracle/install/admin/instances/ovdprtp2b/diagnostics/logs/OVD/ovd1/diagnostic.log&lt;/P&gt;

&lt;P&gt;We want to report on the ovdrtp2a/2b individually, via a field extraction.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2015 18:10:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125854#M34017</guid>
      <dc:creator>a212830</dc:creator>
      <dc:date>2015-02-03T18:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125855#M34018</link>
      <description>&lt;P&gt;I think you should have 2 sourcetypes one for instance ovdrtp2a and the other one for instance ovdrtp2b, then apply field extraction as per sourcetype, &lt;/P&gt;

&lt;P&gt;For example:&lt;/P&gt;

&lt;P&gt;[monitor:///apps/oracle/install/admin/instances/ovdprtp2a]&lt;BR /&gt;
index = Your_index_name&lt;BR /&gt;
sourcetype = ovdprtp2a&lt;/P&gt;

&lt;P&gt;[monitor:///apps/oracle/install/admin/instances/ovdprtp2b]&lt;BR /&gt;
index = Your_index_name&lt;BR /&gt;
sourcetype = ovdprtp2b&lt;/P&gt;

&lt;P&gt;Then apply field extraction through props.conf and transforms.conf.&lt;/P&gt;

&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 18:49:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125855#M34018</guid>
      <dc:creator>aakwah</dc:creator>
      <dc:date>2020-09-28T18:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125856#M34019</link>
      <description>&lt;P&gt;That won't work, as we have dozens of these, and I don't want to maintain that across these servers.    &lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2015 19:52:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125856#M34019</guid>
      <dc:creator>a212830</dc:creator>
      <dc:date>2015-02-03T19:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125857#M34020</link>
      <description>&lt;P&gt;Have you tried using &lt;CODE&gt;rex&lt;/CODE&gt;?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... search terms here ... | rex field=source "instances\/(?&amp;lt;NewFieldName&amp;gt;[^\/]+)" | stats count by NewFieldName
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Feb 2015 19:54:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125857#M34020</guid>
      <dc:creator>wpreston</dc:creator>
      <dc:date>2015-02-03T19:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125858#M34021</link>
      <description>&lt;P&gt;You could also apply it in props/transforms.conf. I had one scenario where given a file like &lt;CODE&gt;/var/log/SystemAOutput.good&lt;/CODE&gt; I wanted to extract "SystemAOutput" and "good." I did this via the props.conf and transforms.conf:&lt;/P&gt;

&lt;P&gt;props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[LogFiles]
TIME_FORMAT = %m/%d/%Y
MAX_EVENTS = 100000
NO_BINARY_CHECK = true
disabled = false
pulldown_type = true
REPORT-reporting = extract_filename
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[extract_filename]
SOURCE_KEY = source
REGEX = [^/\\]([^\\/\.]*?)(?:_File\d*){0,1}\.(bad|good)$
FORMAT = srcfile::$1 status::$2
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Output will then be:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Filename: /var/log/SystemAOutput.good
srcfile: SystemAOutput
status: good
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Feb 2015 21:15:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125858#M34021</guid>
      <dc:creator>David</dc:creator>
      <dc:date>2015-02-03T21:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125859#M34022</link>
      <description>&lt;P&gt;This should work.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2015 21:35:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125859#M34022</guid>
      <dc:creator>masonmorales</dc:creator>
      <dc:date>2015-02-03T21:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125860#M34023</link>
      <description>&lt;P&gt;Thanks.  I'm testing out both methods.  Is there a way to put the rex above in an extraction, rather than in a search?  &lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2015 00:24:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125860#M34023</guid>
      <dc:creator>a212830</dc:creator>
      <dc:date>2015-02-04T00:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125861#M34024</link>
      <description>&lt;P&gt;Yes, the method I posted below. &lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2015 00:29:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125861#M34024</guid>
      <dc:creator>David</dc:creator>
      <dc:date>2015-02-04T00:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125862#M34025</link>
      <description>&lt;P&gt;So, this?&lt;/P&gt;

&lt;P&gt;vds_* : EXTRACT-vdsHost Inline  field=source "instances\/(?&lt;VDSHOST&gt;[^\/]+)"&lt;/VDSHOST&gt;&lt;/P&gt;

&lt;P&gt;I need this to work across multiple sources and sourcetypes, can I wildcard a sourcetype when creating a field extraction?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2015 00:52:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125862#M34025</guid>
      <dc:creator>a212830</dc:creator>
      <dc:date>2015-02-04T00:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125863#M34026</link>
      <description>&lt;P&gt;I decided to go with the props/transforms method.  Can someone help me with the regex?  I'm not very good with these expressions. &lt;/P&gt;

&lt;P&gt;Source = /apps/oracle/install/admin/instances/ovdprtp2a/diagnostics/logs/OVD/ovd1/diagnostic.log&lt;/P&gt;

&lt;P&gt;I need to extract the value between instances and diagnostics. &lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2015 01:32:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125863#M34026</guid>
      <dc:creator>a212830</dc:creator>
      <dc:date>2015-02-04T01:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125864#M34027</link>
      <description>&lt;P&gt;An even easier props.conf method is to use EXTRACT-  without referencing transforms.conf: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[LogFiles]
TIME_FORMAT = %m/%d/%Y
...
...
EXTRACT-myfield = instances/(?&amp;lt;myField&amp;gt;[^/]*)/diagnostics in source
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Feb 2015 02:25:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125864#M34027</guid>
      <dc:creator>_d_</dc:creator>
      <dc:date>2015-02-04T02:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125865#M34028</link>
      <description>&lt;P&gt;Awesome, I didn't know that you could do "in source"&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2015 05:29:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125865#M34028</guid>
      <dc:creator>David</dc:creator>
      <dc:date>2015-02-04T05:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125866#M34029</link>
      <description>&lt;P&gt;Tried this, but the field is not showing up.  &lt;/P&gt;

&lt;P&gt;Put this in my props, pushed it via my cluster manager, even did a rolling restart on the indexers, but it's not appearing.&lt;/P&gt;

&lt;P&gt;EXTRACT-vdsHost = instances/(?[^/]*)/diagnostics in source&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2015 12:06:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125866#M34029</guid>
      <dc:creator>a212830</dc:creator>
      <dc:date>2015-02-04T12:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125867#M34030</link>
      <description>&lt;P&gt;Field extractions go on the search head, not indexers. Also, your capture group in the regex is missing a name; myField above&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2015 13:18:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125867#M34030</guid>
      <dc:creator>_d_</dc:creator>
      <dc:date>2015-02-04T13:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125868#M34031</link>
      <description>&lt;P&gt;Like @David said, props/transforms.conf is the way to go. From the docs on using &lt;CODE&gt;props.conf&lt;/CODE&gt; only extractions:&lt;/P&gt;

&lt;P&gt;All extraction configurations in props.conf are restricted by a specific source, source type, or host. Start by identifying the source type, source, or host that provide the events that your field should be extracted from&lt;/P&gt;

&lt;P&gt;Also from the docs on &lt;CODE&gt;transforms.conf&lt;/CODE&gt; extractions:&lt;/P&gt;

&lt;P&gt;Your search-time field extractions require a field transform component if you need to: &lt;BR /&gt;
• Reuse the same field-extracting regular expression across multiple sources, source types, or hosts (in other words, configure one field transform for multiple field extractions). If you find yourself using the same regex to extract fields for different sources, source types, and hosts, you may want to set it up as a transform. Then, if you find that you need to update the regex, you only have to do so once, even though it is used more than one field extraction.&lt;/P&gt;

&lt;P&gt;So you can't wildcard the sourcetype.  To dowhat you want while making maintenance easy, create a field transform in transforms.conf and reference it in props.conf for each host/source/sourcetype to which it applies:&lt;/P&gt;

&lt;P&gt;transforms.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[myNewFieldExtract]
REGEX = instances\/(?&amp;lt;NewFieldName&amp;gt;[^\/]+)
SOURCE_KEY = source
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[sourcetype::first_sourcetype_this_applies_to]
REPORT-my_class_name = myNewFieldExtract

[sourcetype::second_sourcetype_this_applies_to]
REPORT-my_class_name = myNewFieldExtract

... and so on...
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Feb 2015 13:23:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125868#M34031</guid>
      <dc:creator>wpreston</dc:creator>
      <dc:date>2015-02-04T13:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125869#M34032</link>
      <description>&lt;P&gt;Also note that the class names in each &lt;CODE&gt;props.conf&lt;/CODE&gt; report stanza should be unique.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2015 13:30:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125869#M34032</guid>
      <dc:creator>wpreston</dc:creator>
      <dc:date>2015-02-04T13:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125870#M34033</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;

&lt;P&gt;On your search heads, in props.conf, within the stanzas you want to create this extraction for, add:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;EXTRACT-vdsHost = instances\/(?&amp;lt;vdsHost&amp;gt;[^\/]+)/diagnostics in source
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;After saving, either reload your search head(s), or less intrusively, open the following URL while logged into the search head under an admin account:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://YOURSPUNKSERVERHERE:8000/en-US/debug/refresh"&gt;https://YOURSPUNKSERVERHERE:8000/en-US/debug/refresh&lt;/A&gt; &lt;/P&gt;

&lt;P&gt;Lastly, run a search on the data and verify that the new "vdsHost" field appears in the sidebar.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2015 14:04:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125870#M34033</guid>
      <dc:creator>masonmorales</dc:creator>
      <dc:date>2015-02-04T14:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to do a field extraction on the source field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125871#M34034</link>
      <description>&lt;P&gt;Not sure what I'm doing wrong here... followed what you have...&lt;/P&gt;

&lt;P&gt;props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[sourcetype::vds_access]
ANNOTATE_PUNCT = false
KV_MODE = auto
LINE_BREAKER = ([\r\n]+).\d{4}-\d{2}-\d{2}
MAX_TIMESTAMP_LOOKAHEAD = 30
NO_BINARY_CHECK = 1
SHOULD_LINEMERGE = false
TIME_FORMAT = %Y-%m-%dT%H:%M:%S.%3N
TIME_PREFIX = ^.
TRUNCATE = 999999
REPORT-vdsaccessExtract = vdsHost_extract

[sourcetype::vds_diagnostic]
ANNOTATE_PUNCT = false
KV_MODE = auto
LINE_BREAKER = ([\r\n]+).\d{4}-\d{2}-\d{2}
MAX_TIMESTAMP_LOOKAHEAD = 30
NO_BINARY_CHECK = 1
SHOULD_LINEMERGE = false
TIME_FORMAT = %Y-%m-%dT%H:%M:%S.%3N
TIME_PREFIX = ^.
TRUNCATE = 999999
REPORT-vdsdiagExtract = vdsHost_extract
pulldown_type = 1
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[vdsHost_extract]
REGEX = instances\/(?[^\/]+)
SOURCE_KEY = source
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I pushed these out via the cluster manager, but still don't see the field. &lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2015 14:58:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-do-a-field-extraction-on-the-source-field/m-p/125871#M34034</guid>
      <dc:creator>a212830</dc:creator>
      <dc:date>2015-02-04T14:58:14Z</dc:date>
    </item>
  </channel>
</rss>

