<?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 Rsyslog configuration with Splunk in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Rsyslog-configuration-with-Splunk/m-p/704951#M116599</link>
    <description>&lt;P&gt;Please help me in configuring rsyslog to Splunk. Our rsyslog server will receive the logs from network devices and our rsyslog has UF installed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have no idea of how to configure this and what rsyslog means?&lt;/P&gt;&lt;P&gt;Please help me with step by step procedure of how to configure this to our deployment server or indexer?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Documentation will be highly appreciated.&lt;/P&gt;</description>
    <pubDate>Thu, 21 Nov 2024 13:39:33 GMT</pubDate>
    <dc:creator>Karthikeya</dc:creator>
    <dc:date>2024-11-21T13:39:33Z</dc:date>
    <item>
      <title>Rsyslog configuration with Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Rsyslog-configuration-with-Splunk/m-p/704951#M116599</link>
      <description>&lt;P&gt;Please help me in configuring rsyslog to Splunk. Our rsyslog server will receive the logs from network devices and our rsyslog has UF installed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have no idea of how to configure this and what rsyslog means?&lt;/P&gt;&lt;P&gt;Please help me with step by step procedure of how to configure this to our deployment server or indexer?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Documentation will be highly appreciated.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 13:39:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Rsyslog-configuration-with-Splunk/m-p/704951#M116599</guid>
      <dc:creator>Karthikeya</dc:creator>
      <dc:date>2024-11-21T13:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Rsyslog configuration with Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Rsyslog-configuration-with-Splunk/m-p/704954#M116600</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/273888"&gt;@Karthikeya&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;you have to configure rsyslog using the documentation that you can find at&amp;nbsp;&lt;A href="https://www.rsyslog.com/doc/index.html" target="_blank"&gt;https://www.rsyslog.com/doc/index.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;rsyslog writes the received syslogs in files whose names are defined in the rsyslog configuration file.&lt;/P&gt;&lt;P&gt;Usually part of the path is the hostname that sent logs so you can use it in the inputs.conf configuration.&lt;/P&gt;&lt;P&gt;What's your issue: how to configure rsyslog, how to configure UF or both?&lt;/P&gt;&lt;P&gt;for rsyslog, I already sent the documentation, for the UF input you can see at&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/Splunk/9.3.2/Data/Usingforwardingagents" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/9.3.2/Data/Usingforwardingagents&lt;/A&gt;&amp;nbsp;in addition there are many videos about this.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 14:07:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Rsyslog-configuration-with-Splunk/m-p/704954#M116600</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-11-21T14:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Rsyslog configuration with Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Rsyslog-configuration-with-Splunk/m-p/704955#M116601</link>
      <description>&lt;P&gt;The rsyslog is a brand/flavour of application which is dedicated to syslog message protocol and handling.&amp;nbsp; There are alternatives which the most favorite alternative is likely syslog-ng.&amp;nbsp; So don't get caught up on the term rsyslog.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.rsyslog.com/doc/configuration/index.html" target="_blank"&gt;https://www.rsyslog.com/doc/configuration/index.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Configuring rsyslog or any syslog for your environment can be easy but planning to reduce any gotcha moments requires some for thought.&amp;nbsp; Separating technology and hosts being key things to help make Splunk ingestion much easier.&amp;nbsp; A sample thought would be to have all inbound messages to the aggregator server written to file structure such as:&lt;/P&gt;&lt;P&gt;/logs/&amp;lt;vendor&amp;gt;/&amp;lt;technology&amp;gt;/&amp;lt;host&amp;gt;/&amp;lt;filename.something&amp;gt;&lt;/P&gt;&lt;P&gt;ex&lt;/P&gt;&lt;P&gt;/logs/cisco/isa/127.0.0.1/authentication.log&lt;/P&gt;&lt;P&gt;/logs/cisco/isa/192.168.0.1/metrics.log&lt;/P&gt;&lt;P&gt;* completely fabricated examples&lt;/P&gt;&lt;P&gt;Have the logs rotate on a schedule (ie 15mins or 60 mins) and remove files older than 'x' amount of time.&amp;nbsp; How you do this will be based on volume of logs written and available storage.&amp;nbsp; I've worked on a x3 original file span as a working bias but again your system may dictate that.&amp;nbsp; I always keep some incase the UF goes offline for a short period of time, you can recover logs you may otherwise miss.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once you have that in place then you need to follow the normal UF ingestion process which I wont go through here since your question was more on rsyslog than UF and this community board has far more UF answers than syslog specific examples that are easily searched.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 14:09:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Rsyslog-configuration-with-Splunk/m-p/704955#M116601</guid>
      <dc:creator>dural_yyz</dc:creator>
      <dc:date>2024-11-21T14:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Rsyslog configuration with Splunk</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Rsyslog-configuration-with-Splunk/m-p/704995#M116608</link>
      <description>&lt;P&gt;Well, rsyslog configuration can be as simple as&lt;/P&gt;&lt;PRE&gt;*.* /var/log/all.log&lt;/PRE&gt;&lt;P&gt;but can also span into several hundreds of files, with complicated processing rules and sending data to multiple destinations and such.&lt;/P&gt;&lt;P&gt;Rsyslog recently had a major overhaul of its docs page&amp;nbsp; &lt;A href="https://www.rsyslog.com/doc/v8-stable/index.html" target="_blank"&gt;https://www.rsyslog.com/doc/v8-stable/index.html&lt;/A&gt; (the old docs were a bit confusing at times) and it has a relatively responsive mailing list &lt;A href="https://lists.adiscon.net/mailman/listinfo/rsyslog" target="_blank"&gt;https://lists.adiscon.net/mailman/listinfo/rsyslog&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 20:19:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Rsyslog-configuration-with-Splunk/m-p/704995#M116608</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2024-11-21T20:19:45Z</dc:date>
    </item>
  </channel>
</rss>

