<?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>article Talend logging using Filebeat in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Talend-logging-using-Filebeat/ta-p/2151665</link>
    <description>&lt;P&gt;Filebeat, a part of the &lt;A href="https://www.elastic.co/elk-stack" target="_blank" rel="noopener"&gt;ELK stack&lt;/A&gt;, is a lightweight shipper for forwarding and centralizing log data. This article introduces the best practices that Talend suggests you follow when working with Filebeat.&lt;/P&gt;
&lt;P&gt;Click the following links for the recommended configuration when using Filebeat with the following Talend components:&lt;/P&gt;
&lt;P&gt;&lt;LI-TOC indent="15" liststyle="none" maxheadinglevel="3"&gt;&lt;/LI-TOC&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: that all components are separate and can be installed on different machines.&lt;/P&gt;
&lt;P&gt;The article shows you how to configure and redirect all logs to the centralized logging solution, Log Server.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0683p000009M2Az.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/123797iE71D2B98FFCD9204/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M2Az.png" alt="0683p000009M2Az.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Configuring Log Server (ELK stack)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;The Log Server installation provides the following components:&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;Kibana portal&lt;/LI&gt;
&lt;LI&gt;Elasticsearch&lt;/LI&gt;
&lt;LI&gt;Logstash&lt;/LI&gt;
&lt;LI&gt;Filebeat&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;These components are already integrated and don’t require a deep configuration.&lt;/P&gt;
&lt;P&gt;Usually, in the DEV/TEST environment, Log Server is installed on the same machine as the other Talend components (TAC, Runtime, and others). Thus, the configuration related to remote connections is not necessary.&lt;/P&gt;
&lt;P&gt;However, in the PREPROD or PROD environments, Talend recommends installing Log Server on dedicated machines and clustered.&lt;/P&gt;
&lt;P&gt;The configuration covered in this article is only for a single node installation (not a cluster). In Production, Talend recommends a cluster solution, and depending on the load Elasticsearch, Logstash, and Kibana; it can be installed on a dedicated machine.&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Firewall ports&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;Firewall configuration is necessary to permit remote communication to Log Server. Thus, it’s necessary to open the following ports:&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;&lt;STRONG&gt;5601&lt;/STRONG&gt; - Kibana portal&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;9200&lt;/STRONG&gt; - Elasticsearch&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;5044&lt;/STRONG&gt; - Logstash&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Elasticsearch&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;By default, Elasticsearch only accepts a local connection. Edit the configuration to permit Elasticsearch to receive a remote connection using port 9200:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;Edit the &lt;STRONG&gt;&lt;EM&gt;%LogServer_installation%&lt;/EM&gt;/logserv/elasticsearch-6.1.2/config/elasticsearch.yml&lt;/STRONG&gt; file.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Change &lt;STRONG&gt;network.host&lt;/STRONG&gt; to accept the remote connection:&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;
&lt;P&gt;network.host: &lt;STRONG&gt;ip_address&lt;/STRONG&gt; - binding to accept a remote connection to specific IPs&lt;/P&gt;
&lt;P&gt;Or&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;network.host: &lt;STRONG&gt;0.0.0.0&lt;/STRONG&gt; - binding to accept all remote connections&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Optional&lt;/STRONG&gt;: To avoid the bootstrap check (only for single node), add the following parameter:&lt;/P&gt;
&lt;PRE&gt;discovery.type: single-node&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Talend Administration Center portal&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;If Log Server is installed on a different machine respective of Talend Administration Center (TAC), it is necessary to set the Kibana URL in TAC.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;Connect to TAC.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Navigate to &lt;STRONG&gt;Configuration &amp;gt; Monitoring&lt;/STRONG&gt;, and configure the Kibana URL by replacing the localhost with the Log Server IP address. This configuration permits Log Server to see the Kibana portal from the TAC portal under &lt;STRONG&gt;Monitoring &amp;gt; Logging&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0683p000009M2B4.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/125044i8DB9CE75AF9CB64A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M2B4.png" alt="0683p000009M2B4.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;</description>
    <pubDate>Tue, 23 Jan 2024 02:35:30 GMT</pubDate>
    <dc:creator>TalendSolutionExpert</dc:creator>
    <dc:date>2024-01-23T02:35:30Z</dc:date>
    <item>
      <title>Talend logging using Filebeat</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Talend-logging-using-Filebeat/ta-p/2151665</link>
      <description>&lt;P&gt;Filebeat, a part of the &lt;A href="https://www.elastic.co/elk-stack" target="_blank" rel="noopener"&gt;ELK stack&lt;/A&gt;, is a lightweight shipper for forwarding and centralizing log data. This article introduces the best practices that Talend suggests you follow when working with Filebeat.&lt;/P&gt;
&lt;P&gt;Click the following links for the recommended configuration when using Filebeat with the following Talend components:&lt;/P&gt;
&lt;P&gt;&lt;LI-TOC indent="15" liststyle="none" maxheadinglevel="3"&gt;&lt;/LI-TOC&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: that all components are separate and can be installed on different machines.&lt;/P&gt;
&lt;P&gt;The article shows you how to configure and redirect all logs to the centralized logging solution, Log Server.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0683p000009M2Az.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/123797iE71D2B98FFCD9204/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M2Az.png" alt="0683p000009M2Az.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Configuring Log Server (ELK stack)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;The Log Server installation provides the following components:&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;Kibana portal&lt;/LI&gt;
&lt;LI&gt;Elasticsearch&lt;/LI&gt;
&lt;LI&gt;Logstash&lt;/LI&gt;
&lt;LI&gt;Filebeat&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;These components are already integrated and don’t require a deep configuration.&lt;/P&gt;
&lt;P&gt;Usually, in the DEV/TEST environment, Log Server is installed on the same machine as the other Talend components (TAC, Runtime, and others). Thus, the configuration related to remote connections is not necessary.&lt;/P&gt;
&lt;P&gt;However, in the PREPROD or PROD environments, Talend recommends installing Log Server on dedicated machines and clustered.&lt;/P&gt;
&lt;P&gt;The configuration covered in this article is only for a single node installation (not a cluster). In Production, Talend recommends a cluster solution, and depending on the load Elasticsearch, Logstash, and Kibana; it can be installed on a dedicated machine.&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Firewall ports&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;Firewall configuration is necessary to permit remote communication to Log Server. Thus, it’s necessary to open the following ports:&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;&lt;STRONG&gt;5601&lt;/STRONG&gt; - Kibana portal&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;9200&lt;/STRONG&gt; - Elasticsearch&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;5044&lt;/STRONG&gt; - Logstash&lt;/LI&gt;
&lt;/UL&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Elasticsearch&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;By default, Elasticsearch only accepts a local connection. Edit the configuration to permit Elasticsearch to receive a remote connection using port 9200:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;Edit the &lt;STRONG&gt;&lt;EM&gt;%LogServer_installation%&lt;/EM&gt;/logserv/elasticsearch-6.1.2/config/elasticsearch.yml&lt;/STRONG&gt; file.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Change &lt;STRONG&gt;network.host&lt;/STRONG&gt; to accept the remote connection:&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;
&lt;P&gt;network.host: &lt;STRONG&gt;ip_address&lt;/STRONG&gt; - binding to accept a remote connection to specific IPs&lt;/P&gt;
&lt;P&gt;Or&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;network.host: &lt;STRONG&gt;0.0.0.0&lt;/STRONG&gt; - binding to accept all remote connections&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Optional&lt;/STRONG&gt;: To avoid the bootstrap check (only for single node), add the following parameter:&lt;/P&gt;
&lt;PRE&gt;discovery.type: single-node&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Talend Administration Center portal&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;If Log Server is installed on a different machine respective of Talend Administration Center (TAC), it is necessary to set the Kibana URL in TAC.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;Connect to TAC.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Navigate to &lt;STRONG&gt;Configuration &amp;gt; Monitoring&lt;/STRONG&gt;, and configure the Kibana URL by replacing the localhost with the Log Server IP address. This configuration permits Log Server to see the Kibana portal from the TAC portal under &lt;STRONG&gt;Monitoring &amp;gt; Logging&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="0683p000009M2B4.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/125044i8DB9CE75AF9CB64A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M2B4.png" alt="0683p000009M2B4.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Tue, 23 Jan 2024 02:35:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Talend-logging-using-Filebeat/ta-p/2151665</guid>
      <dc:creator>TalendSolutionExpert</dc:creator>
      <dc:date>2024-01-23T02:35:30Z</dc:date>
    </item>
  </channel>
</rss>

