<?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 edit my regex to extract all expected fields from my sample Blue Coat log? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287401#M86994</link>
    <description>&lt;P&gt;I was confused by this phrase: "With my regular expression, I'm finding that the space in the "cs_categories" field is being used to end the regex match". With a bit of play, I understood you mean that if in your data the category is &lt;CODE&gt;"Social Networking"&lt;/CODE&gt; then the extracted cs_categories is &lt;CODE&gt;"Social&lt;/CODE&gt;. Not what I would expect to happen but I was actually able to reproduce that so I'm guessing that's what you meant. &lt;/P&gt;

&lt;P&gt;So in this regex:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(?&amp;lt;cs_categories&amp;gt;:"([^"]+)"|(\S+))
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;the &lt;CODE&gt;"([^"]+)"&lt;/CODE&gt; is supposed to match (because it's first and the quotes are there) but the &lt;CODE&gt;(\S+)&lt;/CODE&gt;alternative is also a potential match and seems to be preferred by the regexp engine in that instance. I believe this alternative is here to match cases where there is no category and the data just has a single &lt;CODE&gt;-&lt;/CODE&gt;. There might be other cases too, but the point is they won't have double quotes.&lt;/P&gt;

&lt;P&gt;So I would suggest you replace the &lt;CODE&gt;\S+&lt;/CODE&gt; with &lt;CODE&gt;[^"]\S*&lt;/CODE&gt; to prevent that alternative from being used when quotes are present. I &lt;EM&gt;think&lt;/EM&gt; that should work. The idea is that &lt;CODE&gt;[^"]&lt;/CODE&gt; means the first character cannot be a &lt;CODE&gt;"&lt;/CODE&gt; and of course we replace the &lt;CODE&gt;+&lt;/CODE&gt; (which means 1 or more) with the &lt;CODE&gt;*&lt;/CODE&gt; (which means zero or more) so that we still match instances where the match is a single character long.&lt;/P&gt;

&lt;P&gt;Hope it helps.&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 10:26:55 GMT</pubDate>
    <dc:creator>gabriel_vasseur</dc:creator>
    <dc:date>2020-09-29T10:26:55Z</dc:date>
    <item>
      <title>How to edit my regex to extract all expected fields from my sample Blue Coat log?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287393#M86986</link>
      <description>&lt;P&gt;I'm using the following regular expression:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(?&amp;lt;timestamp&amp;gt;:"(\d{1,4}\-\d{1,2}\-\d{1,2}\s\d{1,2}:\d{1,2}:\d{1,2})"|(\d{1,4}\-\d{1,2}\-\d{1,2}\s\d{1,2}:\d{1,2}:\d{1,2}))\s+(?&amp;lt;time_taken&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;c_ip&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_username&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_auth_group&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;x_exception_id&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;sc_filter_result&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_categories&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_referrer&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;sc_status&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;s_action&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_method&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;rs_content_type&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_uri_scheme&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_host&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_uri_port&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_uri_path&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_uri_query&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_uri_extension&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_user_agent&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;s_ip&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;sc_bytes&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_bytes&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;x_virus_id&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;x_bluecoat_application_name&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;x_bluecoat_application_operation&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_auth_type&amp;gt;:"([^"]+)"|(\S+))\s*
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;On the following example log file:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;2016-07-28 23:37:32 240144 1.1.1.1 - - - OBSERVED "Social Networking" -  200 TCP_TUNNELED CONNECT - tcp plus.google.com 443 / - - "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36" 1.1.1.1 1135 2522 - "GooglePlus" "none" - 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;There should be 28 fields in that example log file when date and time are separate fields (I combined them into one field).&lt;/P&gt;

&lt;P&gt;With my regular expression, I'm finding that the space in the "cs_categories" field is being used to end the regex match, which doesn't make sense to me since when I try it out on a regex simulator it matches just fine. Example: &lt;A href="http://regexr.com/3dtdr"&gt;http://regexr.com/3dtdr&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;It's obvious that the space in the cs_categories field is somehow throwing off the parser. However, I'm not sure why. I'm not a regex master, so I'm leaning more toward it being a Splunk specific difference in regex engine, but I could be entirely wrong.&lt;/P&gt;

&lt;P&gt;I would really appreciate any kind of help.&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2016 15:24:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287393#M86986</guid>
      <dc:creator>jwertheim</dc:creator>
      <dc:date>2016-07-29T15:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my regex to extract all expected fields from my sample Blue Coat log?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287394#M86987</link>
      <description>&lt;P&gt;I doubt it will work for everything, since cs_user_agent changes every time.. But this one works on your sample event, and it works for cs_categories. I just used the built in field extractor to get the one field, and then inserted it into your regex after &lt;CODE&gt;(?&amp;lt;cs_categories&amp;gt;&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;If possible, I'd set bluecoat to insert delimeters like &lt;CODE&gt;|&lt;/CODE&gt; into your logs, and just use a delimited extraction. cs_user_agent is BANE of web logs.&lt;/P&gt;

&lt;P&gt;&lt;IMG src="https://community.splunk.com/storage/temp/151187-capture.jpg" alt="alt text" /&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(?&amp;lt;timestamp&amp;gt;:"(\d{1,4}\-\d{1,2}\-\d{1,2}\s\d{1,2}:\d{1,2}:\d{1,2})"|(\d{1,4}\-\d{1,2}\-\d{1,2}\s\d{1,2}:\d{1,2}:\d{1,2}))\s+(?&amp;lt;time_taken&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;c_ip&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_username&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_auth_group&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;x_exception_id&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;sc_filter_result&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_categories&amp;gt;"\w+\s+\w+"|(\S+))\s+(?&amp;lt;cs_referrer&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;sc_status&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;s_action&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_method&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;rs_content_type&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_uri_scheme&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_host&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_uri_port&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_uri_path&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_uri_query&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_uri_extension&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_user_agent&amp;gt;("\w+/\d+\.\d+\s+\(\w+\s+\w+\s+\d+\.\d+;\s+\w+\)\s+\w+/\d+\.\d+\s+\(\w+,\s+\w+\s+\w+\)\s+\w+/\d+\.\d+\.\d+\.\d+\s+\w+/\d+\.\d+")|(\S+))\s+(?&amp;lt;sc_bytes&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_bytes&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;x_virus_id&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;x_bluecoat_application_name&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;x_bluecoat_application_operation&amp;gt;:"([^"]+)"|(\S+))\s+(?&amp;lt;cs_auth_type&amp;gt;:"([^"]+)"|(\S+))\s*
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 29 Sep 2020 10:25:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287394#M86987</guid>
      <dc:creator>JDukeSplunk</dc:creator>
      <dc:date>2020-09-29T10:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my regex to extract all expected fields from my sample Blue Coat log?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287395#M86988</link>
      <description>&lt;P&gt;That's really odd..&lt;/P&gt;

&lt;P&gt;I just tried that expression you have and it's somewhat working, but it turns out there are many variations of how the values for that field can appear, so I still get off-by-one type issues where the wrong field's value is recorded as a cs_categories value.&lt;/P&gt;

&lt;P&gt;Not sure if there's a better way to find them all..&lt;/P&gt;

&lt;P&gt;I don't actually have access to the source Blue Coat system so I don't have a way to set delimiters like that, though I wish that I could...&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2016 18:21:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287395#M86988</guid>
      <dc:creator>jwertheim</dc:creator>
      <dc:date>2016-07-29T18:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my regex to extract all expected fields from my sample Blue Coat log?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287396#M86989</link>
      <description>&lt;P&gt;My hand written regex is rusty, but if they are always inclosed in quotes rebuild the line to capture anything between the quotes.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|(\S+))\s+(?&amp;lt;cs_categories&amp;gt;"([^"]+)"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Jul 2016 19:25:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287396#M86989</guid>
      <dc:creator>JDukeSplunk</dc:creator>
      <dc:date>2016-07-29T19:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my regex to extract all expected fields from my sample Blue Coat log?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287397#M86990</link>
      <description>&lt;P&gt;Yeah, that's what I've tried and then it all just breaks down.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2016 20:59:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287397#M86990</guid>
      <dc:creator>jwertheim</dc:creator>
      <dc:date>2016-07-29T20:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my regex to extract all expected fields from my sample Blue Coat log?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287398#M86991</link>
      <description>&lt;P&gt;Are you using the Splunk Blue Coat TA or do you have custom log formats you're dealing with? If you're not using the TA, this should help:&lt;/P&gt;

&lt;P&gt;&lt;A href="https://splunkbase.splunk.com/app/2758/"&gt;https://splunkbase.splunk.com/app/2758/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2016 21:01:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287398#M86991</guid>
      <dc:creator>sbrant_splunk</dc:creator>
      <dc:date>2016-07-29T21:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my regex to extract all expected fields from my sample Blue Coat log?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287399#M86992</link>
      <description>&lt;P&gt;Not exactly.&lt;/P&gt;

&lt;P&gt;I'm testing my own add-on using data generated from &lt;A href="https://github.com/splunk/eventgen"&gt;SA-Eventgen&lt;/A&gt;, and that data happens to be based off of Blue Coat logs. Those logs are pretty custom I think (the one in the original post is a decent example).&lt;/P&gt;

&lt;P&gt;I can try the Add-on for Blue Coat ProxySG though and see what happens.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2016 21:35:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287399#M86992</guid>
      <dc:creator>jwertheim</dc:creator>
      <dc:date>2016-07-29T21:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my regex to extract all expected fields from my sample Blue Coat log?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287400#M86993</link>
      <description>&lt;P&gt;The closest thing I've dealt with to this are IIS Logs. I followed this guide.&lt;/P&gt;

&lt;P&gt;&lt;A href="http://blogs.splunk.com/2013/10/18/iis-logs-and-splunk-6/" target="_blank"&gt;http://blogs.splunk.com/2013/10/18/iis-logs-and-splunk-6/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;IIS Logs have a header row in the file which defines the fields, and is whitespace delimited. Along with examples of props.conf which worked for me. The app I put in place works about 95% of the time, which for what we need is good enough. Where it breaks is cs_user_agent. &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 10:26:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287400#M86993</guid>
      <dc:creator>JDukeSplunk</dc:creator>
      <dc:date>2020-09-29T10:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my regex to extract all expected fields from my sample Blue Coat log?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287401#M86994</link>
      <description>&lt;P&gt;I was confused by this phrase: "With my regular expression, I'm finding that the space in the "cs_categories" field is being used to end the regex match". With a bit of play, I understood you mean that if in your data the category is &lt;CODE&gt;"Social Networking"&lt;/CODE&gt; then the extracted cs_categories is &lt;CODE&gt;"Social&lt;/CODE&gt;. Not what I would expect to happen but I was actually able to reproduce that so I'm guessing that's what you meant. &lt;/P&gt;

&lt;P&gt;So in this regex:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(?&amp;lt;cs_categories&amp;gt;:"([^"]+)"|(\S+))
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;the &lt;CODE&gt;"([^"]+)"&lt;/CODE&gt; is supposed to match (because it's first and the quotes are there) but the &lt;CODE&gt;(\S+)&lt;/CODE&gt;alternative is also a potential match and seems to be preferred by the regexp engine in that instance. I believe this alternative is here to match cases where there is no category and the data just has a single &lt;CODE&gt;-&lt;/CODE&gt;. There might be other cases too, but the point is they won't have double quotes.&lt;/P&gt;

&lt;P&gt;So I would suggest you replace the &lt;CODE&gt;\S+&lt;/CODE&gt; with &lt;CODE&gt;[^"]\S*&lt;/CODE&gt; to prevent that alternative from being used when quotes are present. I &lt;EM&gt;think&lt;/EM&gt; that should work. The idea is that &lt;CODE&gt;[^"]&lt;/CODE&gt; means the first character cannot be a &lt;CODE&gt;"&lt;/CODE&gt; and of course we replace the &lt;CODE&gt;+&lt;/CODE&gt; (which means 1 or more) with the &lt;CODE&gt;*&lt;/CODE&gt; (which means zero or more) so that we still match instances where the match is a single character long.&lt;/P&gt;

&lt;P&gt;Hope it helps.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 10:26:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287401#M86994</guid>
      <dc:creator>gabriel_vasseur</dc:creator>
      <dc:date>2020-09-29T10:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to edit my regex to extract all expected fields from my sample Blue Coat log?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287402#M86995</link>
      <description>&lt;P&gt;Bluecoat logs are a pain in the *** to extract but I think this regex should do the trick:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;(?&amp;lt;timestamp&amp;gt;[0-9-:\s]{19})\s+(?&amp;lt;time_taken&amp;gt;[^\s]+)\s+(?&amp;lt;c_ip&amp;gt;[^\s]+)\s+(?&amp;lt;cs_username&amp;gt;[^\s]+)\s+(?&amp;lt;cs_auth_group&amp;gt;[^\s]+)\s+(?&amp;lt;x_exception_id&amp;gt;[^\s]+)\s+(?&amp;lt;sc_filter_result&amp;gt;[^\s]+)(?:\s+\"|\s+)(?&amp;lt;cs_categories&amp;gt;[^\"]+)(?:\"\s+|\s+)(?&amp;lt;cs_referrer&amp;gt;[^\s]+)\s+(?&amp;lt;sc_status&amp;gt;[^\s]+)\s+(?&amp;lt;s_action&amp;gt;[^\s]+)\s+(?&amp;lt;cs_method&amp;gt;[^\s]+)\s+(?&amp;lt;rs_content_type&amp;gt;[^\s]+)\s+(?&amp;lt;cs_uri_scheme&amp;gt;[^\s]+)\s+(?&amp;lt;cs_host&amp;gt;[^\s]+)\s+(?&amp;lt;cs_uri_port&amp;gt;[^\s]+)\s+(?&amp;lt;cs_uri_path&amp;gt;[^\s]+)\s+(?&amp;lt;cs_uri_query&amp;gt;[^\s]+)\s+(?&amp;lt;cs_uri_extension&amp;gt;[^\s]+)(?:\s+\"|\s+)(?&amp;lt;cs_user_agent&amp;gt;[^\"]+)(?:\"\s+|\s+)(?&amp;lt;s_ip&amp;gt;[^\s]+)\s+(?&amp;lt;sc_bytes&amp;gt;[^\s]+)\s+(?&amp;lt;cs_bytes&amp;gt;[^\s]+)(?:\s+\"|\s+)(?&amp;lt;x_virus_id&amp;gt;[^\"\s]+)(?:\"\s+\"|\"\s+|\s+\"|\s+)(?&amp;lt;x_bluecoat_applicatoin_name&amp;gt;[^\s\"]+)(?:\"\s+\"|\"\s+|\s+\"|\s+)(?&amp;lt;x_bleucoat_application_operation&amp;gt;[^\"\s]+)(?:\"\s+|\s+)(?&amp;lt;cs_auth_type&amp;gt;[^\s]+)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 Aug 2016 10:18:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-edit-my-regex-to-extract-all-expected-fields-from-my/m-p/287402#M86995</guid>
      <dc:creator>aholzel</dc:creator>
      <dc:date>2016-08-05T10:18:32Z</dc:date>
    </item>
  </channel>
</rss>

