<?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: unable to send windows events  from splunk server to third party syslog server in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/unable-to-send-windows-events-from-splunk-server-to-third-party/m-p/369870#M92884</link>
    <description>&lt;P&gt;do you have that config on a heavy forwarder or indexer?  don't believe syslog processing is available on universal forwarder.&lt;/P&gt;</description>
    <pubDate>Sun, 02 Jul 2017 13:06:09 GMT</pubDate>
    <dc:creator>maciep</dc:creator>
    <dc:date>2017-07-02T13:06:09Z</dc:date>
    <item>
      <title>unable to send windows events  from splunk server to third party syslog server</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/unable-to-send-windows-events-from-splunk-server-to-third-party/m-p/369869#M92883</link>
      <description>&lt;P&gt;tried below configurations to forward the data from SPLUNK server  to syslog server(third party) , but no data in syslog server. can you please help me out on this where i'm going wrong&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;props.conf:&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;[WinEventLog:Security]&lt;BR /&gt;
TRANSFORMS-routing = win_security_syslog&lt;/P&gt;

&lt;P&gt;[WinEventLog:Application]&lt;BR /&gt;
TRANSFORMS-routing = win_application_syslog&lt;/P&gt;

&lt;P&gt;[WinEventLog:System]&lt;BR /&gt;
TRANSFORMS-routing = win_system_syslog&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;transforms.conf :&lt;/STRONG&gt; &lt;/P&gt;

&lt;P&gt;[win_security_syslog]&lt;BR /&gt;
REGEX = .&lt;BR /&gt;
DEST_KEY = _SYSLOG_ROUTING&lt;BR /&gt;
FORMAT = win_syslog_group&lt;/P&gt;

&lt;P&gt;[win_application_syslog]&lt;BR /&gt;
REGEX = .&lt;BR /&gt;
DEST_KEY = _SYSLOG_ROUTING&lt;BR /&gt;
FORMAT = win_syslog_group&lt;/P&gt;

&lt;P&gt;[win_system_syslog]&lt;BR /&gt;
REGEX = .&lt;BR /&gt;
DEST_KEY = _SYSLOG_ROUTING&lt;BR /&gt;
FORMAT = win_syslog_group&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;outputs.conf:&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;[syslog:win_syslog_group]&lt;BR /&gt;
server = abc:514&lt;BR /&gt;
type=udp&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 14:38:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/unable-to-send-windows-events-from-splunk-server-to-third-party/m-p/369869#M92883</guid>
      <dc:creator>cleelakrishna</dc:creator>
      <dc:date>2020-09-29T14:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: unable to send windows events  from splunk server to third party syslog server</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/unable-to-send-windows-events-from-splunk-server-to-third-party/m-p/369870#M92884</link>
      <description>&lt;P&gt;do you have that config on a heavy forwarder or indexer?  don't believe syslog processing is available on universal forwarder.&lt;/P&gt;</description>
      <pubDate>Sun, 02 Jul 2017 13:06:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/unable-to-send-windows-events-from-splunk-server-to-third-party/m-p/369870#M92884</guid>
      <dc:creator>maciep</dc:creator>
      <dc:date>2017-07-02T13:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: unable to send windows events  from splunk server to third party syslog server</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/unable-to-send-windows-events-from-splunk-server-to-third-party/m-p/369871#M92885</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I'm afraid there's no easy solution.&lt;/P&gt;

&lt;P&gt;your configuration looks good but doesn't apply because winevent log collection is done in a structured way -&amp;gt; so data is going out of your UF already parsed ...&lt;BR /&gt;
when received later on (on a HF for example which can send syslog) -&amp;gt; splunk doesn't reanalyze the data twice.&lt;BR /&gt;
but the original UF can't directly send syslog...&lt;/P&gt;

&lt;P&gt;so you should : &lt;BR /&gt;
- keep a uf for collection&lt;BR /&gt;
- send your data normally up to your indexer(s).&lt;BR /&gt;
- somewhere between your uf and indexer(s), clone the data (a uf can do it) and send it to 1 or more specialized HF that will do the syslog and other specific things (ie transforms) you'll need to make windows event fit in syslog (because that's not natural to make multiline go in a protocol which is traditionally for one line events...) &lt;BR /&gt;
- apply your syslog stuff above on the specialized HF/Syslog &lt;/P&gt;

&lt;P&gt;look at this post as a guideline&lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/5528/forwarding-select-data-in-my-environment.html"&gt;https://answers.splunk.com/answers/5528/forwarding-select-data-in-my-environment.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;beware that you should not modify the settings before cloning as setting the route parameters on input should normally not be modified.(because it's easy to break things this way)&lt;/P&gt;

&lt;P&gt;Good luck and happy splunking !&lt;/P&gt;</description>
      <pubDate>Sun, 02 Jul 2017 19:10:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/unable-to-send-windows-events-from-splunk-server-to-third-party/m-p/369871#M92885</guid>
      <dc:creator>maraman_splunk</dc:creator>
      <dc:date>2017-07-02T19:10:25Z</dc:date>
    </item>
  </channel>
</rss>

