<?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: On what Splunk instance should my FIELDALIAS configurations go? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/On-what-Splunk-instance-should-my-FIELDALIAS-configurations-go/m-p/250251#M48162</link>
    <description>&lt;P&gt;A good resource I use for identifying where configuration items should be set: &lt;A href="http://wiki.splunk.com/Where_do_I_configure_my_Splunk_settings%3F"&gt;http://wiki.splunk.com/Where_do_I_configure_my_Splunk_settings%3F&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 01 Oct 2015 12:44:42 GMT</pubDate>
    <dc:creator>sloshburch</dc:creator>
    <dc:date>2015-10-01T12:44:42Z</dc:date>
    <item>
      <title>On what Splunk instance should my FIELDALIAS configurations go?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/On-what-Splunk-instance-should-my-FIELDALIAS-configurations-go/m-p/250247#M48158</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I am processing Bluecoat logs on a heavy forwarder.  I'm trying to set up some fields using FIELDALIAS, but they are not appearing.  I have the following on my heavy forwarder.  Should they be somewhere else?  &lt;/P&gt;

&lt;P&gt;Props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[source::tcp:1918]
MAX_TIMESTAMP_LOOKAHEAD = 19
SHOULD_LINEMERGE = false
REPORT-main = BlueCoatTCP_HTTPLogs
TRANSFORMS-tcp = nullPound
TIME_FORMAT = %Y-%m-%d %T
FIELDALIAS-srcip = c_ip AS src_ip
FIELDALIAS-cs_host = cs_host AS dest_host
FIELDALIAS-protocol = cs_uri_scheme AS protocol
FIELDALIAS-dest_port = cs_uri_port AS dest_port
FIELDALIAS-src_user = cs_username AS src_user
FIELDALIAS-s_ip = s_ip AS dvc_ip
FIELDALIAS-http_response = sc_status AS http_response
FIELDALIAS-bytes_out = cs_bytes AS bytes_out
FIELDALIAS-bytes_in = sc_bytes AS bytes_in
FIELDALIAS-r_ip = r_ip AS resolved_ip
FIELDALIAS-r_port = r_port AS resolved_port
FIELDALIAS-s_computername = s_computername AS proxy_server
pulldown_type = true
TZ = UTC
KV_MODE = none 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[BlueCoatTCP_HTTPLogs]
DELIMS = " "
FIELDS = "date", "time", "s-computername", "cs-username", "c-ip", "sc-filter-res
ult", "cs-method", "cs-uri", "sc-status", "cs(Referer)", "cs-categories", "cs-au
th-group", "x-exception-id", "s-action", "cs(User-Agent)", "time-taken", "sc-byt
es", "cs-bytes", "cs-uri-scheme", "cs-host", "cs-uri-port", "cs-uri-path", "cs-u
ri-query", "cs-uri-extension", "rs(Content-Type)", "r-ip", "r-port"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Sep 2015 13:06:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/On-what-Splunk-instance-should-my-FIELDALIAS-configurations-go/m-p/250247#M48158</guid>
      <dc:creator>a212830</dc:creator>
      <dc:date>2015-09-30T13:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: On what Splunk instance should my FIELDALIAS configurations go?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/On-what-Splunk-instance-should-my-FIELDALIAS-configurations-go/m-p/250248#M48159</link>
      <description>&lt;P&gt;Split your props.conf into two, one goes to Heavy forwarder, other on Search Head&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Heavy forwarder : Props.conf

[source::tcp:1918]
MAX_TIMESTAMP_LOOKAHEAD = 19
SHOULD_LINEMERGE = false
TRANSFORMS-tcp = nullPound
TIME_FORMAT = %Y-%m-%d %T
pulldown_type = true
TZ = UTC
KV_MODE = none 

Heavy Forwarder : Transforms.conf

[nullPound]
&amp;lt;&amp;lt;I thing this is the one you missed to mention&amp;gt;&amp;gt;


Search Head: Props.conf

[source::tcp:1918]
REPORT-main = BlueCoatTCP_HTTPLogs
FIELDALIAS-srcip = c_ip AS src_ip
FIELDALIAS-cs_host = cs_host AS dest_host
FIELDALIAS-protocol = cs_uri_scheme AS protocol
FIELDALIAS-dest_port = cs_uri_port AS dest_port
FIELDALIAS-src_user = cs_username AS src_user
FIELDALIAS-s_ip = s_ip AS dvc_ip
FIELDALIAS-http_response = sc_status AS http_response
FIELDALIAS-bytes_out = cs_bytes AS bytes_out
FIELDALIAS-bytes_in = sc_bytes AS bytes_in
FIELDALIAS-r_ip = r_ip AS resolved_ip
FIELDALIAS-r_port = r_port AS resolved_port
FIELDALIAS-s_computername = s_computername AS proxy_server

Search Head: Transforms.conf

[BlueCoatTCP_HTTPLogs]
DELIMS = " "
FIELDS = "date", "time", "s-computername", "cs-username", "c-ip", "sc-filter-res
ult", "cs-method", "cs-uri", "sc-status", "cs(Referer)", "cs-categories", "cs-au
th-group", "x-exception-id", "s-action", "cs(User-Agent)", "time-taken", "sc-byt
es", "cs-bytes", "cs-uri-scheme", "cs-host", "cs-uri-port", "cs-uri-path", "cs-u
ri-query", "cs-uri-extension", "rs(Content-Type)", "r-ip", "r-port"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Sep 2015 16:01:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/On-what-Splunk-instance-should-my-FIELDALIAS-configurations-go/m-p/250248#M48159</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2015-09-30T16:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: On what Splunk instance should my FIELDALIAS configurations go?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/On-what-Splunk-instance-should-my-FIELDALIAS-configurations-go/m-p/250249#M48160</link>
      <description>&lt;P&gt;What is the empty nullpound for in the transforms.conf?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2015 16:55:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/On-what-Splunk-instance-should-my-FIELDALIAS-configurations-go/m-p/250249#M48160</guid>
      <dc:creator>a212830</dc:creator>
      <dc:date>2015-09-30T16:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: On what Splunk instance should my FIELDALIAS configurations go?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/On-what-Splunk-instance-should-my-FIELDALIAS-configurations-go/m-p/250250#M48161</link>
      <description>&lt;P&gt;FIELDALIAS is a search time operation, so it needs to go on the search head.&lt;/P&gt;

&lt;P&gt;However, if you are using bluecoat proxy, there is already an add-on for that: &lt;A href="https://splunkbase.splunk.com/app/2758/"&gt;https://splunkbase.splunk.com/app/2758/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2015 17:35:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/On-what-Splunk-instance-should-my-FIELDALIAS-configurations-go/m-p/250250#M48161</guid>
      <dc:creator>mreynov_splunk</dc:creator>
      <dc:date>2015-09-30T17:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: On what Splunk instance should my FIELDALIAS configurations go?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/On-what-Splunk-instance-should-my-FIELDALIAS-configurations-go/m-p/250251#M48162</link>
      <description>&lt;P&gt;A good resource I use for identifying where configuration items should be set: &lt;A href="http://wiki.splunk.com/Where_do_I_configure_my_Splunk_settings%3F"&gt;http://wiki.splunk.com/Where_do_I_configure_my_Splunk_settings%3F&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2015 12:44:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/On-what-Splunk-instance-should-my-FIELDALIAS-configurations-go/m-p/250251#M48162</guid>
      <dc:creator>sloshburch</dc:creator>
      <dc:date>2015-10-01T12:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: On what Splunk instance should my FIELDALIAS configurations go?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/On-what-Splunk-instance-should-my-FIELDALIAS-configurations-go/m-p/250252#M48163</link>
      <description>&lt;P&gt;In your original props.conf, there is a line for a transform but there is no definition provided in transforms. I just added a placeholder.&lt;/P&gt;

&lt;P&gt;TRANSFORMS-tcp = nullPound&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2015 14:23:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/On-what-Splunk-instance-should-my-FIELDALIAS-configurations-go/m-p/250252#M48163</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2015-10-01T14:23:20Z</dc:date>
    </item>
  </channel>
</rss>

