<?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: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs? in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120257#M9195</link>
    <description>&lt;P&gt;In props.conf you should put sourcetype in stanza to be applied to the logs that come from sourcetype, so if your sourcetype is cloudfront, props.conf should be like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; [cloudfront]
 REPORT-main=cloudfront_w3c
 SHOULD_LINEMERGE=false
 TIME_FORMAT=%Y-%m-%d %T
 MAX_TIMESTAMP_LOOKAHEAD = 19
 SHOULD_LINEMERGE = false
 TZ = UTC
 pulldown_type = true
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Ahmed&lt;/P&gt;</description>
    <pubDate>Tue, 27 Jan 2015 19:59:36 GMT</pubDate>
    <dc:creator>aakwah</dc:creator>
    <dc:date>2015-01-27T19:59:36Z</dc:date>
    <item>
      <title>Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120254#M9192</link>
      <description>&lt;P&gt;I have setup forwarder to dump my cloudfront logs to splunk, below is the raw logs format.  I have tried following &lt;A href="http://docs.splunk.com/Documentation/AddOns/released/CiscoWSA/Configurew3clogfieldextractions"&gt;http://docs.splunk.com/Documentation/AddOns/released/CiscoWSA/Configurew3clogfieldextractions&lt;/A&gt; matching cloudfront logs but no luck. Below is how I have setup props &amp;amp; transforms.conf. I'm able to see the raw data in splunk, but I want to map to event name so i can query them. &lt;/P&gt;

&lt;P&gt;I'm trying to follow as mentioned in &lt;A href="http://answers.splunk.com/answers/57770/transforms-conf-and-props-conf-field-extractions.html"&gt;http://answers.splunk.com/answers/57770/transforms-conf-and-props-conf-field-extractions.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;#Raw Logs&lt;/STRONG&gt; &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;2015-01-27  12:48:48    JAX1    1871    71.1.1.16   GET d21rhj.cloudfront.net   /test/20150112/54b48398e4b0f8e9e9d6ddf2_141391808196.mp4    200 &lt;A href="http://www.test.com/demo.html" target="test_blank"&gt;http://www.test.com/demo.html&lt;/A&gt;   Mozilla/5.0%2520(Windows%2520NT%25206.0;%2520WOW64)%2520AppleWebKit/537.36%2520(KHTML,%2520like%2520Gecko)%2520Chrome/39.0.2171.95%2520Safari/537.36    -   -   Hit Ba3xwT-zb-czH_zw==  v.test.com  http    637 0.002
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;#transforms.conf&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[auto_kv_for_video_cloudfront_w3c]
REGEX=/\S+/g
FORMAT=date::$1,time::$2,x_edge_location::$3,sc_bytes::$4,c_ip::$5,cs_method::$6,cs_Host::$7,cs_uri_stem::$8,sc_status::$9,cs_referer::$10,cs_user_agent::$11,cs_uri_query::$12,cs_cookie::$13,x_edge_result_type::$14,x_edge_request_id::$15,x_host_header::$16,cs_protocol::$17,cs_bytes::$18,time_taken::$19
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;#props.conf&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[cloudfrontprof]
pulldown_type=1
REPORT-auto_kv_for_video_cloudfront_w3c=auto_kv_for_video_cloudfront_w3c
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 27 Jan 2015 18:20:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120254#M9192</guid>
      <dc:creator>MayankSplunk</dc:creator>
      <dc:date>2015-01-27T18:20:14Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120255#M9193</link>
      <description>&lt;P&gt;I can see that the delimiter between fields is space so you can use the following configuration,&lt;/P&gt;

&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[cloudfront_w3c]
DELIMS = " "
FIELDS = date,time,x_edge_location,sc_bytes,c_ip,cs_method,cs_Host,cs_uri_stem,sc_status,cs_referer,cs_user_agent,cs_uri_query,cs_cookie,x_edge_result_type,x_edge_request_id,x_host_header,cs_protocol,cs_bytes,time_taken
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[cloudfrontprof]
REPORT-main=cloudfront_w3c
SHOULD_LINEMERGE=false
TIME_FORMAT=%Y-%m-%d %T
MAX_TIMESTAMP_LOOKAHEAD = 19
SHOULD_LINEMERGE = false
TZ = UTC
pulldown_type = true
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Ahmed Elakwah&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2015 19:12:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120255#M9193</guid>
      <dc:creator>aakwah</dc:creator>
      <dc:date>2015-01-27T19:12:15Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120256#M9194</link>
      <description>&lt;P&gt;Hi Ahmed,&lt;/P&gt;

&lt;P&gt;Thanks for the reply. I have implemented what you have mentioned but when I query using following command I don't see any data but I do have raw logs. Event mapping won't work, any other thoughts?&lt;/P&gt;

&lt;P&gt;index=video sourcetype="cloudfront"  date="2015-01-27"&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2015 19:42:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120256#M9194</guid>
      <dc:creator>MayankSplunk</dc:creator>
      <dc:date>2015-01-27T19:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120257#M9195</link>
      <description>&lt;P&gt;In props.conf you should put sourcetype in stanza to be applied to the logs that come from sourcetype, so if your sourcetype is cloudfront, props.conf should be like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; [cloudfront]
 REPORT-main=cloudfront_w3c
 SHOULD_LINEMERGE=false
 TIME_FORMAT=%Y-%m-%d %T
 MAX_TIMESTAMP_LOOKAHEAD = 19
 SHOULD_LINEMERGE = false
 TZ = UTC
 pulldown_type = true
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Ahmed&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2015 19:59:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120257#M9195</guid>
      <dc:creator>aakwah</dc:creator>
      <dc:date>2015-01-27T19:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120258#M9196</link>
      <description>&lt;P&gt;thanks, i tried that din't work,  any other ideas?&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2015 20:09:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120258#M9196</guid>
      <dc:creator>MayankSplunk</dc:creator>
      <dc:date>2015-01-27T20:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120259#M9197</link>
      <description>&lt;P&gt;Please use the following files then restart searchhead,&lt;/P&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  [cloudfront]
  TRANSFORMS-sourcetype = cloudfront
  REPORT-main=cloudfront_w3c
  SHOULD_LINEMERGE=false
  TIME_FORMAT=%Y-%m-%d %T
  MAX_TIMESTAMP_LOOKAHEAD = 19
  SHOULD_LINEMERGE = false
  TZ = UTC
  pulldown_type = true
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[cloudfront]
DEST_KEY = MetaData:Sourcetype
REGEX = .*
FORMAT = sourcetype::cloudfront

 [cloudfront_w3c]
 DELIMS = " "
 FIELDS = date,time,x_edge_location,sc_bytes,c_ip,cs_method,cs_Host,cs_uri_stem,sc_status,cs_referer,cs_user_agent,cs_uri_query,cs_cookie,x_edge_result_type,x_edge_request_id,x_host_header,cs_protocol,cs_bytes,time_taken
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Please let me know if it worked ..&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Ahmed&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2015 21:31:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120259#M9197</guid>
      <dc:creator>aakwah</dc:creator>
      <dc:date>2015-01-27T21:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120260#M9198</link>
      <description>&lt;P&gt;Sorry, din't work. &lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2015 22:19:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120260#M9198</guid>
      <dc:creator>MayankSplunk</dc:creator>
      <dc:date>2015-01-27T22:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120261#M9199</link>
      <description>&lt;P&gt;As per the raw log above is the delimiter between fields is one space or four spaces?&lt;/P&gt;

&lt;P&gt;If it is 4 spaces, please edit transforms.conf to have:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  [cloudfront_w3c]
  DELIMS = "    "
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Ahmed&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2015 22:26:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120261#M9199</guid>
      <dc:creator>aakwah</dc:creator>
      <dc:date>2015-01-27T22:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120262#M9200</link>
      <description>&lt;P&gt;Seems like tab space, i tried tab, one ,two and four spaces, din't help&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2015 22:48:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120262#M9200</guid>
      <dc:creator>MayankSplunk</dc:creator>
      <dc:date>2015-01-27T22:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120263#M9201</link>
      <description>&lt;P&gt;Really strange I had the same config and it worked fine, just last trial can you please run the the search index=video to make sure that sourcetype is correct.&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Ahmed&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2015 23:20:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120263#M9201</guid>
      <dc:creator>aakwah</dc:creator>
      <dc:date>2015-01-27T23:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120264#M9202</link>
      <description>&lt;P&gt;Sure, Tried without the sourcetype - din't fetch any records &lt;/P&gt;

&lt;P&gt;index=video date="2015-01-28"&lt;/P&gt;

&lt;P&gt;Here is how my #inputs.conf looks &lt;/P&gt;

&lt;P&gt;[monitor:///Users/m/Downloads/cloudfrontlogs.log]&lt;BR /&gt;
index=video&lt;BR /&gt;
sourcetype=cloudfront&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jan 2015 14:56:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120264#M9202</guid>
      <dc:creator>MayankSplunk</dc:creator>
      <dc:date>2015-01-28T14:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120265#M9203</link>
      <description>&lt;P&gt;Fine, now I've all the configuration you have on search head, so if you can provide me a sample from the logs to reproduce the issue at my side it will be great.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jan 2015 15:23:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120265#M9203</guid>
      <dc:creator>aakwah</dc:creator>
      <dc:date>2015-01-28T15:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120266#M9204</link>
      <description>&lt;P&gt;sure, &lt;/P&gt;

&lt;P&gt;**#Version: 1.0&lt;/P&gt;

&lt;H1&gt;Fields: date time x-edge-location sc-bytes c-ip cs-method cs(Host) cs-uri-stem sc-status cs(Referer) cs(User-Agent) cs-uri-query cs(Cookie) x-edge-result-type x-edge-request-id x-host-header cs-protocol cs-bytes time-taken**&lt;/H1&gt;

&lt;P&gt;2015-01-15  20:59:51    JAX1    1871    7.9.79.36   GET d21.cloudfront.net  /test-production/The_W/20150112/54b4838ce4b0bba7b00fa440/54b48398e4b0f8e9e9d6ddf2_1413918081967-dr4cae_t_1421116337023_640_360_600.m3u8 200 &lt;A href="http://www.tv.com/test/business/m/2015/01/13/1_v.html" target="_blank"&gt;http://www.tv.com/test/business/m/2015/01/13/1_v.html&lt;/A&gt;   Mozilla/5.0%2520(Windows%2520NT%25206.0;%2520WOW64)%2520AppleWebKit/537.36%2520(KHTML,%2520like%2520Gecko)%2520Chrome/39.0.2171.95%2520Safari/537.36    -   -   Hit Ba3xwTDLovRQ12HojdT-zb-czH_cmLUqtYl_m2FmuHE0ow==    videos.test.com http    637 0.002&lt;BR /&gt;
2015-01-15  20:58:05    ATL50   779890  18.12.8.57  GET d21.cloudfront.net  /test-production/S_M/20150112/54b44e04e4b0bba7b00fa2b2/54b44e13e4b0f8e9e9d6dcd9_1413918194984-wmfwb0_t_1421102625151_320_180_30000000.ts    200 &lt;A href="http://www.tv.com/test/static/js/p/vendor/jwplayer/jw-6.11/jwplayer.flash.swf" target="_blank"&gt;http://www.tv.com/test/static/js/p/vendor/jwplayer/jw-6.11/jwplayer.flash.swf&lt;/A&gt;   Mozilla/5.0%2520(compatible;%2520MSIE%252010.0;%2520Windows%2520NT%25206.1;%2520Win64;%2520x64;%2520Trident/6.0)    -   -   Hit QzZckws5b8rKxZttkRy_sWSXF3fOtRnO3Kje6Qf_fvP25YpnWVcvRQ==    videos.test.com http    634 2.537&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 18:47:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120266#M9204</guid>
      <dc:creator>MayankSplunk</dc:creator>
      <dc:date>2020-09-28T18:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120267#M9205</link>
      <description>&lt;P&gt;Hello, &lt;BR /&gt;
All fields are successfully extracted with the above configuration as per the following snapshots:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;https://drive.google.com/file/d/0B9wUSHOfDLvoT3E2dVVGcU92eGc/view?pli=1
https://drive.google.com/file/d/0B9wUSHOfDLvoSzFWMnFZWUxFZ2s/view?pli=1
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I used the following configuration (I've added nullPound pat in props.conf and transforms.conf to exclude lines with # in beginning of the file )&lt;/P&gt;

&lt;P&gt;inputs.conf (/opt/splunk/etc/system/local/inputs.conf)&lt;BR /&gt;
[monitor:///tmp/support]&lt;BR /&gt;
index = bcoat_logs&lt;BR /&gt;
sourcetype = cloudfront&lt;/P&gt;

&lt;P&gt;props.conf (/opt/splunk/etc/apps/search/default/props.conf)&lt;BR /&gt;
[cloudfront]&lt;BR /&gt;
TRANSFORMS-sourcetype = nullPound, cloudfront&lt;BR /&gt;
REPORT-main=cloudfront_w3c&lt;BR /&gt;
SHOULD_LINEMERGE=false&lt;BR /&gt;
TIME_FORMAT=%Y-%m-%d %T&lt;BR /&gt;
MAX_TIMESTAMP_LOOKAHEAD = 19&lt;BR /&gt;
SHOULD_LINEMERGE = false&lt;BR /&gt;
TZ = UTC&lt;BR /&gt;
pulldown_type = true&lt;/P&gt;

&lt;P&gt;transforms.conf&lt;BR /&gt;
[nullPound]&lt;BR /&gt;
REGEX = ^#&lt;BR /&gt;
DEST_KEY=queue&lt;BR /&gt;
FORMAT=nullQueue&lt;/P&gt;

&lt;P&gt;[cloudfront]&lt;BR /&gt;
DEST_KEY = MetaData:Sourcetype&lt;BR /&gt;
REGEX = .*&lt;BR /&gt;
FORMAT = sourcetype::cloudfront&lt;/P&gt;

&lt;P&gt;[cloudfront_w3c]&lt;BR /&gt;
DELIMS = " "&lt;BR /&gt;
FIELDS = date,time,x_edge_location,sc_bytes,c_ip,cs_method,cs_Host,cs_uri_stem,sc_status,cs_referer,cs_user_agent,cs_uri_query,cs_cookie,x_edge_result_type,x_edge_request_id,x_host_header,cs_protocol,cs_bytes,time_taken&lt;/P&gt;

&lt;P&gt;I think that there are some configuration files in your environment are overriding the configuration we add, try to search for "cloudfront" in all files as per the following:&lt;/P&gt;

&lt;P&gt;grep -R 'cloudfront' /opt/splunk/etc/*&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Ahmed&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 18:47:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120267#M9205</guid>
      <dc:creator>aakwah</dc:creator>
      <dc:date>2020-09-28T18:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120268#M9206</link>
      <description>&lt;P&gt;Until now I was placing my props.conf in wrong directory I have update the location you specified. &lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;#transforms.conf -&amp;gt; etc/system/local/transforms.conf&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;Running the grep command gives following output: &lt;/P&gt;

&lt;P&gt;etc/apps/search/default/props.conf:[cloudfront]&lt;BR /&gt;
etc/apps/search/default/props.conf:TRANSFORMS-sourcetype = nullPound, cloudfront&lt;BR /&gt;
etc/apps/search/default/props.conf:REPORT-main=cloudfront_w3c&lt;BR /&gt;
etc/system/local/inputs.conf:[monitor:///Users/m/Downloads/cloudfrontlogs.log]&lt;BR /&gt;
etc/system/local/inputs.conf:sourcetype=cloudfront&lt;BR /&gt;
etc/system/local/transforms.conf:[cloudfront]&lt;BR /&gt;
etc/system/local/transforms.conf:FORMAT = sourcetype::cloudfront&lt;BR /&gt;
etc/system/local/transforms.conf:[cloudfront_w3c]&lt;/P&gt;

&lt;P&gt;nothing seems wrong with grep output.  I can try to install splunk again and try it out.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 18:47:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120268#M9206</guid>
      <dc:creator>MayankSplunk</dc:creator>
      <dc:date>2020-09-28T18:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120269#M9207</link>
      <description>&lt;P&gt;CloudFront access logs use W3C extended log format. Therefore you can have Splunk parse the file header and automatically extract all fields at index-time using the following simple props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[cloudfront-access-log]
INDEXED_EXTRACTIONS = W3C
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You can learn more about field extractions for structured data files here:&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.3.0/Data/Extractfieldsfromfileheadersatindextime"&gt;http://docs.splunk.com/Documentation/Splunk/6.3.0/Data/Extractfieldsfromfileheadersatindextime&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Oct 2015 22:06:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120269#M9207</guid>
      <dc:creator>rarsan_splunk</dc:creator>
      <dc:date>2015-10-02T22:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Add-on for Cisco WSA: How to configure field-extractions using props.conf and transform.conf for raw Cloudfront logs?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120270#M9208</link>
      <description>&lt;P&gt;Also, refer to &lt;A href="http://answers.splunk.com/answers/311972/aws-cloudfront.html#answer-315294"&gt;http://answers.splunk.com/answers/311972/aws-cloudfront.html#answer-315294&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Oct 2015 22:44:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Splunk-Add-on-for-Cisco-WSA-How-to-configure-field-extractions/m-p/120270#M9208</guid>
      <dc:creator>rarsan_splunk</dc:creator>
      <dc:date>2015-10-02T22:44:16Z</dc:date>
    </item>
  </channel>
</rss>

