<?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: forward logs from HF to third-party using syslog in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690123#M114838</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is it possible to define it like what you did&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;[TMAO_sourcetype]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and if yes sourcetype of data source right?&lt;/P&gt;</description>
    <pubDate>Sun, 09 Jun 2024 10:19:32 GMT</pubDate>
    <dc:creator>KhalidAlharthi</dc:creator>
    <dc:date>2024-06-09T10:19:32Z</dc:date>
    <item>
      <title>forward logs from HF to third-party using syslog</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690111#M114833</link>
      <description>&lt;P&gt;i have used this approach to forward logs from specific index to third-party system in my case Qradar&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so i need to do the same forwarding specific index using syslog not TCP cuz it's takes time ( i did tcpdump to figure that)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this approach i follow&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;# props.conf

[default]
TRANSFORMS-send_foo_to_remote_siem

# transforms.conf

[send_foo_to_remote_siem]
REGEX = foo
SOURCE_KEY = _MetaData:Index
DEST_KEY = _TCP_ROUTING
FORMAT = remote_siem

# outputs.conf

[tcpout:remote_siem]
server = remotesiem:1234
sendCookedData = false&lt;/PRE&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 08:17:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690111#M114833</guid>
      <dc:creator>KhalidAlharthi</dc:creator>
      <dc:date>2024-06-09T08:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: forward logs from HF to third-party using syslog</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690117#M114835</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/266570"&gt;@KhalidAlharthi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;does it run your solution?&lt;/P&gt;&lt;P&gt;I found an error: the transformation is missed in the props.conf.&lt;/P&gt;&lt;P&gt;I'm not sure that you can put the TRANSFORMS in Default stanza and I don't like to use a regex on index field, I'd use a different approach:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;# props.conf

[your_sourcetype]
TRANSFORMS-send_foo_to_remote_siem = send_foo_to_remote_siem

# transforms.conf

[send_foo_to_remote_siem]
REGEX = .
DEST_KEY = _TCP_ROUTING
FORMAT = remote_siem

# outputs.conf

[tcpout:remote_siem]
server = remotesiem:1234
sendCookedData = false&lt;/LI-CODE&gt;&lt;P&gt;then put attention to the sourcetype: you must be sure that you are using, in the props.conf, the original sourcetype and not a transformed (by the add-on) one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 09:49:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690117#M114835</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-06-09T09:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: forward logs from HF to third-party using syslog</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690120#M114836</link>
      <description>&lt;P&gt;by this you are sending all the event to remote siem&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i need to send just TMAO trend micro&amp;nbsp;&lt;/P&gt;&lt;P&gt;soo what the best approach to do this using syslog ...&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 10:01:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690120#M114836</guid>
      <dc:creator>KhalidAlharthi</dc:creator>
      <dc:date>2024-06-09T10:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: forward logs from HF to third-party using syslog</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690122#M114837</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/266570"&gt;@KhalidAlharthi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;in props.conf, you have to use only the sourcetype of the logs to send to syslog.&lt;/P&gt;&lt;P&gt;If they are more than one, put more stanzas in props.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;# props.conf

[TMAO_sourcetype]
TRANSFORMS-send_foo_to_remote_siem = send_foo_to_remote_siem

# transforms.conf

[send_foo_to_remote_siem]
REGEX = .
DEST_KEY = _TCP_ROUTING
FORMAT = remote_siem

# outputs.conf

[tcpout:remote_siem]
server = remotesiem:1234
sendCookedData = false&lt;/LI-CODE&gt;&lt;P&gt;AS I said, check the exact sourcetype name: I recently solved an issue near your, where the error was the sourcetype exact name.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 10:06:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690122#M114837</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-06-09T10:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: forward logs from HF to third-party using syslog</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690123#M114838</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is it possible to define it like what you did&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;[TMAO_sourcetype]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and if yes sourcetype of data source right?&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 10:19:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690123#M114838</guid>
      <dc:creator>KhalidAlharthi</dc:creator>
      <dc:date>2024-06-09T10:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: forward logs from HF to third-party using syslog</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690145#M114845</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/266570"&gt;@KhalidAlharthi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;yes (I saw your other question!).&lt;/P&gt;&lt;P&gt;let me know if I can help you more, or, please, accept one answer for the other people of Community.&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 16:11:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690145#M114845</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-06-09T16:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: forward logs from HF to third-party using syslog</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690150#M114846</link>
      <description>&lt;P&gt;yeah i picked your solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;could you please check your DM&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 17:39:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690150#M114846</guid>
      <dc:creator>KhalidAlharthi</dc:creator>
      <dc:date>2024-06-09T17:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: forward logs from HF to third-party using syslog</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690154#M114847</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.splunk.com/t5/user/viewprofilepage/user-id/266570" target="_blank"&gt;@KhalidAlharthi&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;what do you mean with "DM"?&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated&lt;SPAN&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 17:57:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690154#M114847</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-06-09T17:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: forward logs from HF to third-party using syslog</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690155#M114848</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;I sent you private message .&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2024 18:04:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/690155#M114848</guid>
      <dc:creator>KhalidAlharthi</dc:creator>
      <dc:date>2024-06-09T18:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: forward logs from HF to third-party using syslog</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/746001#M118559</link>
      <description>&lt;P&gt;We have installed Splunk in windows and we want to send windows logs from Search Head, LM and CM to 3rd party using an indexer, somehow those logs can be seen in Search head queries but indexer is not forwarding them to 3rd party.&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 03:03:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/746001#M118559</guid>
      <dc:creator>malisushil119</dc:creator>
      <dc:date>2025-05-13T03:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: forward logs from HF to third-party using syslog</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/746014#M118562</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/241738"&gt;@malisushil119&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;don't attach a new post to another one, even if on the same topic because you'll receive a faster and probably better answer.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2025 06:45:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/forward-logs-from-HF-to-third-party-using-syslog/m-p/746014#M118562</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2025-05-13T06:45:10Z</dc:date>
    </item>
  </channel>
</rss>

