<?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: Field names specified in props.conf do not show in search app in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42918#M10087</link>
    <description>&lt;P&gt;Ok, All is as far as I know it the way it should be. I STILL do not see my custom fields. Also when I click on "Show Source" I get the same 5 records that are the odd ones out.&lt;/P&gt;</description>
    <pubDate>Wed, 22 May 2013 13:15:40 GMT</pubDate>
    <dc:creator>mplungjan</dc:creator>
    <dc:date>2013-05-22T13:15:40Z</dc:date>
    <item>
      <title>Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42905#M10074</link>
      <description>&lt;P&gt;In &lt;CODE&gt;\etc\apps\search\local\transforms.conf&lt;/CODE&gt; I have the following entry - I have checked it agains the file and it now is correct regex&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[registrants]
REGEX = /^([0-9\.]+) ([0-9\-]*) ([0-9\-]*) (\[[^\]]+\]) ("[^"]+") ([0-9\-]+) ([0-9\-]+) ("[^"]+") ("[^"]+") ([0-9\-]+) ("[^"]+") ([0-9\.\-]+)/
FORMAT = client_ip::$1 user::$2 profile::$3 timestamp::$4 url::$5 http_status::$6 bytes::$7 junk::$8 user_agent::$9 processing_time_ms::$10 registrant::$11 forward_for::$12
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;In &lt;CODE&gt;\etc\apps\search\local\props.conf&lt;/CODE&gt; I have the following entry&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[Apache-registrant-forward]
REPORT-registrants = registrants
SHOULD_LINEMERGE = false
TIME_PREFIX = \[
maxDist = 28
pulldown_type = 1
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;In the search app I have&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;sourcetype="Apache-registrant-forward"&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;The data looks like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;1.1.1.1 - - [24/Apr/2013:15:47:11 +0200] "GET /somerest HTTP/1.1" 200 12345 "-" "some useragent" 123 "1234" 111.222.333.444
1.1.1.2 - - [24/Apr/2013:15:47:11 +0200] "GET /somerest HTTP/1.1" 200 78910 "-" "some useragent" 223 "5678" 222.333.444.555
1.1.1.1 - - [24/Apr/2013:15:47:11 +0200] "GET /somerest HTTP/1.1" 200 28356 "-" "some useragent" 323 "2345" 333.444.555.666
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;e.g. the client_ip is the proxy and the forward_for is the original IP&lt;/P&gt;

&lt;P&gt;When I load the log file, I give it a type from the dropdown which shows &lt;CODE&gt;Apache-registrant-forward&lt;/CODE&gt; - I am not sure the type it shows is taken from the file I saved. &lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Questions&lt;/STRONG&gt;&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;I want the regex to be used for all log files I add - I would expect it to go in my system/local folder - is that correct? It is now (due to suggestions here) in my app/search/local folder&lt;/LI&gt;
&lt;LI&gt;how do I tell the search app to use my regex and show me the registrant entry?&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;&lt;STRONG&gt;UPDATE&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;Trying Ayn's code&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;source="C:\\..."  | rex "^(?&amp;lt;client_ip&amp;gt;[0-9\.]+) (?&amp;lt;user&amp;gt;[0-9\-]*) (?&amp;lt;profile&amp;gt;[0-9\-]*) (\[[^\]]+\]) (?&amp;lt;url&amp;gt;\"[^\"]+\") (?&amp;lt;http_status&amp;gt;[0-9\-]+) (?&amp;lt;bytes&amp;gt;[0-9\-]+) (?&amp;lt;user_agent&amp;gt;\"[^\"]+\") (?&amp;lt;processing_time_ms&amp;gt;\"[^\"]+\") (?&amp;lt;registrant&amp;gt;[0-9\-]+) (?&amp;lt;forward_for&amp;gt;\"[^\"]+\") ([0-9\.\-]+)"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;which ALMOST works, BUT there is a "-" in the source before the useragent, so I added &lt;CODE&gt;(\"[^\"]+\")&lt;/CODE&gt; and instantly it fails finding the field names - here is my regex with each on a new line (but in real life it is on one line&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; source="C:\\..."   | rex "
 ^(?&amp;lt;client_ip&amp;gt;[0-9\.]+) 
  (?&amp;lt;user&amp;gt;[0-9\-]*) 
  (?&amp;lt;profile&amp;gt;[0-9\-]*) 
  (?&amp;lt;timestamp&amp;gt;\[[^\]]+\]) 
  (?&amp;lt;url&amp;gt;\"[^\"]+\") 
  (?&amp;lt;http_status&amp;gt;[0-9\-]+) 
  (?&amp;lt;bytes&amp;gt;[0-9\-]+) 
  (\"[^\"]+\") 
  (?&amp;lt;user_agent&amp;gt;\"[^\"]+\") 
  (?&amp;lt;processing_time_ms&amp;gt;\"[^\"]+\") 
  (?&amp;lt;registrant&amp;gt;[0-9\-]+) 
  (?&amp;lt;forward_for&amp;gt;[0-9\.\-]+)
  "
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Sep 2020 13:57:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42905#M10074</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2020-09-28T13:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42906#M10075</link>
      <description>&lt;P&gt;Could you try it under search app? "\etc\apps\search\local\props.conf" and do a restart wait for the new data to come?&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 10:01:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42906#M10075</guid>
      <dc:creator>linu1988</dc:creator>
      <dc:date>2013-05-22T10:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42907#M10076</link>
      <description>&lt;P&gt;The REGEX and FORMAT should not be in the props.conf file, but in the transforms.conf, along these lines. &lt;/P&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[your sourcetype]
REPORT-xyz = my_extractions
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[my_extractions]
REGEX = 
FORMAT =
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/5.0.2/Knowledge/Createandmaintainsearch-timefieldextractionsthroughconfigurationfiles"&gt;http://docs.splunk.com/Documentation/Splunk/5.0.2/Knowledge/Createandmaintainsearch-timefieldextractionsthroughconfigurationfiles&lt;/A&gt;&lt;/P&gt;

&lt;HR /&gt;

&lt;P&gt;UPDATE:&lt;/P&gt;

&lt;P&gt;Another way of extracting the fields is to use &lt;CODE&gt;DELIMS&lt;/CODE&gt; and &lt;CODE&gt;FIELDS&lt;/CODE&gt; in transforms.conf (instead of &lt;CODE&gt;REGEX&lt;/CODE&gt; and &lt;CODE&gt;FORMAT&lt;/CODE&gt;; The props.conf is the same (&lt;CODE&gt;REPORT-somename = my_extractions&lt;/CODE&gt;), but in transforms.conf, you put;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[my_extractions]
DELIMS = " "
FIELDS = field1 field2 field3 field4 fieldx
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;CODE&gt;DELIMS&lt;/CODE&gt; can take one or two parameters;  the first is the delimeter between values (or key/value pairs), and the (optional) second parameter is the delimeter between key and value. &lt;CODE&gt;FIELDS&lt;/CODE&gt; specify the fields in the order they appear in the events. In your case that is probably a simpler approach, since you don't really need to do regex extractions. &lt;/P&gt;

&lt;P&gt;Examples: &lt;/P&gt;

&lt;P&gt;event format 1: &lt;CODE&gt;key1:value1; key2:value2; key3:value3&lt;/CODE&gt;&lt;BR /&gt;
&lt;CODE&gt;DELIMS = "; ", ":"&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;event format 2: &lt;CODE&gt;value1;value2;value3&lt;/CODE&gt;&lt;BR /&gt;
&lt;CODE&gt;DELIMS = ";"&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;event format 3: &lt;CODE&gt;key1=value1|key2=value2|key3=value3&lt;/CODE&gt;&lt;BR /&gt;
&lt;CODE&gt;DELIMS = "|", "="&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Also, since your events seem to be single line, you should probably set &lt;CODE&gt;SHOULD_LINEMERGE = false&lt;/CODE&gt; in props.conf. &lt;/P&gt;

&lt;P&gt;/K&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 10:51:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42907#M10076</guid>
      <dc:creator>kristian_kolb</dc:creator>
      <dc:date>2013-05-22T10:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42908#M10077</link>
      <description>&lt;P&gt;Why would you need to reindex them?&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 12:01:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42908#M10077</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-05-22T12:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42909#M10078</link>
      <description>&lt;P&gt;Could you post exactly what you have in your props.conf and transforms.conf now?&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 12:02:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42909#M10078</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-05-22T12:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42910#M10079</link>
      <description>&lt;P&gt;Right, so now you have your configuration directives in the right places, but your regex is off. It's usually a good idea to test your regex using something like regexpal.com, RegExr (&lt;A href="http://gskinner.com/RegExr/"&gt;http://gskinner.com/RegExr/&lt;/A&gt;) or for that matter Splunk's own &lt;CODE&gt;rex&lt;/CODE&gt; command inline in a search.&lt;/P&gt;

&lt;P&gt;Your regex currently "breaks" at the user agent. You're not looking for quotation marks there even there are quotation marks in the log. A working regex (at least against the sample data you supplied here) would be something like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;^([0-9\.]+) ([0-9\-]*) ([0-9\-]*) (\[[^\]]+\]) ("[^"]+") ([0-9\-]+) ([0-9\-]+) ("[^"]+") ("[^"]+") ([0-9\-]+) ("[^"]+") ([0-9\.]+)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 May 2013 12:47:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42910#M10079</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-05-22T12:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42911#M10080</link>
      <description>&lt;P&gt;see update above&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 12:47:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42911#M10080</guid>
      <dc:creator>kristian_kolb</dc:creator>
      <dc:date>2013-05-22T12:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42912#M10081</link>
      <description>&lt;P&gt;oops. My bad. didn't think of the user_agent. Dammit!&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 12:49:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42912#M10081</guid>
      <dc:creator>kristian_kolb</dc:creator>
      <dc:date>2013-05-22T12:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42913#M10082</link>
      <description>&lt;P&gt;Thanks again, My log file is a modified apache log file so I cannot split on space, I of course do need to specify the correct regex. I did not put the other lines in there so I will change to false&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 12:52:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42913#M10082</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-05-22T12:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42914#M10083</link>
      <description>&lt;P&gt;What did you find exactly? I tested with javascript &lt;BR /&gt;
Also how to I restart the extraction? Sorry for all the questions. Splunk is a bit overwhelming when there is a custom thing going on. Just the fact that I can have pros and transforms in several directories and cannot see which is picked up is a problem of its own&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 12:54:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42914#M10083</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-05-22T12:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42915#M10084</link>
      <description>&lt;P&gt;I can understand it can be overwhelming at first &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;You don't need to restart anything, changes to search-time extractions take effect immediately so the next time you issue a search your new settings will be used.&lt;/P&gt;

&lt;P&gt;I tested your regex at regexpal.com and saw quickly that it wouldn't match your sample data.&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 12:57:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42915#M10084</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-05-22T12:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42916#M10085</link>
      <description>&lt;P&gt;It's not me wanting you to fix things, I'm just trying to help you get things working &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;I added the fourth group from the end - ("[^"]+") - because without it your regex wouldn't work. The regex I pasted should work, so...&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 13:07:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42916#M10085</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-05-22T13:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42917#M10086</link>
      <description>&lt;P&gt;Ahh - thanks. I was staring me blind on this.&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 13:11:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42917#M10086</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-05-22T13:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42918#M10087</link>
      <description>&lt;P&gt;Ok, All is as far as I know it the way it should be. I STILL do not see my custom fields. Also when I click on "Show Source" I get the same 5 records that are the odd ones out.&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 13:15:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42918#M10087</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-05-22T13:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42919#M10088</link>
      <description>&lt;P&gt;"Why would you need to reindex them?" because I have new files with new data in a changed format.&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 13:27:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42919#M10088</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-05-22T13:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42920#M10089</link>
      <description>&lt;P&gt;Extractions take place at search-time though, so if it's for the sake of the extractions you don't need to reindex your data.&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 13:33:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42920#M10089</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-05-22T13:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42921#M10090</link>
      <description>&lt;P&gt;What do you mean by "test of the regex"?&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2013 13:58:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42921#M10090</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-05-22T13:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42922#M10091</link>
      <description>&lt;P&gt;Please re-read my question. I believe all regex issues are solved but none of the fieldnames show up in my search&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2013 09:53:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42922#M10091</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-05-23T09:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42923#M10092</link>
      <description>&lt;P&gt;If you move your extractions into an inline &lt;CODE&gt;rex&lt;/CODE&gt; statement, do you see fields then? E.g.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;yourbasesearch&amp;gt; | rex "^(?&amp;lt;client_ip&amp;gt;[0-9\.]+) (?&amp;lt;user&amp;gt;[0-9\-]*) (?&amp;lt;profile&amp;gt;[0-9\-]*) (\[[^\]]+\]) (?&amp;lt;url&amp;gt;\"[^\"]+\") (?&amp;lt;http_status&amp;gt;[0-9\-]+) (?&amp;lt;bytes&amp;gt;[0-9\-]+) (?&amp;lt;user_agent&amp;gt;\"[^\"]+\") (?&amp;lt;processing_time_ms&amp;gt;\"[^\"]+\") (?&amp;lt;registrant&amp;gt;[0-9\-]+) (?&amp;lt;forward_for&amp;gt;\"[^\"]+\") ([0-9\.\-]+)"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 23 May 2013 10:17:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42923#M10092</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-05-23T10:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: Field names specified in props.conf do not show in search app</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42924#M10093</link>
      <description>&lt;P&gt;Thanks - it initially gave an error due to the cut and paste from the email. It looks like it works when I copy from your comment instead - (except some of the fields are swapped, I think I can fix that)&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2013 11:03:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Field-names-specified-in-props-conf-do-not-show-in-search-app/m-p/42924#M10093</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-05-23T11:03:41Z</dc:date>
    </item>
  </channel>
</rss>

