<?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 Splunk Forwarding audittrail data to third party system via syslog not working in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Forwarding-audittrail-data-to-third-party-system-via/m-p/265423#M50918</link>
    <description>&lt;P&gt;Attempting to forward audittrail sourcetype data via syslog to our existing SIEM.  I have a similar setup already working for non-internal index data, but for some reason, the config does not appear to be sending data.  There is an metrics.log value that I use to see the data coming off Splunk to that output and there is nothing there.  Also, nothing is showing up in the SIEM.&lt;/P&gt;

&lt;P&gt;Here is my config:&lt;/P&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[audittrail]
TRANSFORMS-audittrail = send_to_syslog
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[send_to_syslog]
REGEX = .
DEST_KEY = _SYSLOG_ROUTING
FORMAT = siem_syslog_group
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;outputs.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[syslog:siem_syslog_group]
maxEventSize = 4096
server = servernamehere:514
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 20 May 2016 15:04:06 GMT</pubDate>
    <dc:creator>stevepraz</dc:creator>
    <dc:date>2016-05-20T15:04:06Z</dc:date>
    <item>
      <title>Splunk Forwarding audittrail data to third party system via syslog not working</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Forwarding-audittrail-data-to-third-party-system-via/m-p/265423#M50918</link>
      <description>&lt;P&gt;Attempting to forward audittrail sourcetype data via syslog to our existing SIEM.  I have a similar setup already working for non-internal index data, but for some reason, the config does not appear to be sending data.  There is an metrics.log value that I use to see the data coming off Splunk to that output and there is nothing there.  Also, nothing is showing up in the SIEM.&lt;/P&gt;

&lt;P&gt;Here is my config:&lt;/P&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[audittrail]
TRANSFORMS-audittrail = send_to_syslog
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[send_to_syslog]
REGEX = .
DEST_KEY = _SYSLOG_ROUTING
FORMAT = siem_syslog_group
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;outputs.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[syslog:siem_syslog_group]
maxEventSize = 4096
server = servernamehere:514
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 20 May 2016 15:04:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Forwarding-audittrail-data-to-third-party-system-via/m-p/265423#M50918</guid>
      <dc:creator>stevepraz</dc:creator>
      <dc:date>2016-05-20T15:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Forwarding audittrail data to third party system via syslog not working</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Forwarding-audittrail-data-to-third-party-system-via/m-p/265424#M50919</link>
      <description>&lt;P&gt;Where have you put the props, transforms and outputs?  Is this a distributed environment?&lt;/P&gt;

&lt;P&gt;If its a single instance, then this needs to be in $splunk_home/etc/system/local.  If it is a distributed environment, you'll have to make those changes in same location but on all servers.&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2016 15:09:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Forwarding-audittrail-data-to-third-party-system-via/m-p/265424#M50919</guid>
      <dc:creator>jkat54</dc:creator>
      <dc:date>2016-05-23T15:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Forwarding audittrail data to third party system via syslog not working</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Forwarding-audittrail-data-to-third-party-system-via/m-p/265425#M50920</link>
      <description>&lt;P&gt;Hi stevepraz,&lt;/P&gt;

&lt;P&gt;You may already found the answer since, but in case here's the recipe :&lt;/P&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; [audittrail]
 TRANSFORMS-audittrail = send_to_syslog
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; [send_to_syslog]
 REGEX = .
 DEST_KEY = _TCP_ROUTING
 FORMAT = siem_syslog_group
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;outputs.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[tcpout]
indexAndForward = true
defaultGroup = NoForwarding

[tcpout:siem_syslog_group]
maxEventSize = 4096
server = servernamehere:514
sendCookedData = false
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Sep 2017 19:18:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Forwarding-audittrail-data-to-third-party-system-via/m-p/265425#M50920</guid>
      <dc:creator>nicolas_perreau</dc:creator>
      <dc:date>2017-09-22T19:18:02Z</dc:date>
    </item>
  </channel>
</rss>

