<?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 Configuring Talend Administration Center with Filebeat in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Configuring-Talend-Administration-Center-with-Filebeat/ta-p/2150753</link>
    <description>&lt;P&gt;This is a continuation of the Talend Community Knowledge Base article, &lt;A href="https://community.qlik.com/t5/Ready-for-Go-Live/Talend-logging-using-Filebeat/ta-p/2151665" target="_blank" rel="noopener"&gt;Talend logging using Filebeat&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Depending on your Talend Administration Center (TAC) installation (single component or Talend bundle component), TAC can be installed alone or with Filebeat.&lt;/P&gt;
&lt;P&gt;If Filebeat is not part of the installation, copy a Filebeat installation folder from another installation folder (for example, the one installed with &lt;A href="https://community.qlik.com/t5/Ready-for-Go-Live/Talend-logging-using-Filebeat/ta-p/2151665" target="_blank" rel="noopener"&gt;Talend logging using Filebeat&lt;/A&gt;), and configure a dedicated service.&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Configuring Talend Administration Center portal&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN&gt;Talend Administration Center&lt;/SPAN&gt; uses two files to collect technical and business logs. Configure these files on &lt;SPAN&gt;Talend Administration Center (TAC)&amp;nbsp;&lt;/SPAN&gt;by performing the following steps.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Log in to TAC.&lt;/LI&gt;
&lt;LI&gt;Change the location of the &lt;STRONG&gt;Technical&lt;/STRONG&gt; and &lt;STRONG&gt;Business&lt;/STRONG&gt; logs in the &lt;STRONG&gt;Logs&lt;/STRONG&gt; section on the TAC &lt;STRONG&gt;Configuration&lt;/STRONG&gt; page, as follows:
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;Technical file appender: &lt;STRONG&gt;&lt;EM&gt;%TAC_installation%&lt;/EM&gt;/tac/logs/technical.log&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Business log file path: &lt;STRONG&gt;&lt;EM&gt;%TAC_installation%&lt;/EM&gt;/tac/logs/business.log&lt;/STRONG&gt;&lt;/LI&gt;
&lt;/UL&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="0693p000008uMNIAA2.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/123719iCE9700CD53D047DD/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uMNIAA2.png" alt="0693p000008uMNIAA2.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;These files and folders should be created manually on the machine, and the TAC service user should have permission on it.&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Configuring Filebeat&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;Configure Filebeat, on the installation location, to permit Log Server to redirect logs to a specific logstash instance.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;Open the &lt;STRONG&gt;&lt;EM&gt;%TAC_installation%&lt;/EM&gt;/filebeat/filebeat.yml&lt;/STRONG&gt; file and change &lt;STRONG&gt;output.logstash: &amp;gt; hosts:&lt;/STRONG&gt; with the location of your Log Server, as shown below:&lt;/P&gt;
&lt;PRE&gt;output.logstash:
 # The Logstash hosts
 hosts: ["logserver_ip:5044"]
 #hosts: ["localhost:5044"]&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Change the &lt;STRONG&gt;filebeat.prospectors:&lt;/STRONG&gt; section. By default, there are already two sub-sections, identified by &lt;STRONG&gt;fields &amp;gt; app_id:&lt;/STRONG&gt; &lt;STRONG&gt;TAC&lt;/STRONG&gt; and &lt;STRONG&gt;DQ&lt;/STRONG&gt; (out of scope, not reported).&lt;/P&gt;
&lt;PRE&gt;filebeat.prospectors:
- type: log 
  enabled: true 
  paths: 
    - %TAC_installation_path%/tac/logs/*.log 
  fields: 
    app_id: TAC 
  fields_under_root: true&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Ensure that the paths in the TAC section point to the same location of the logs you configured on TAC portal.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: It is also possible to redirect the apache-tomcat logs by creating a new sub-section, as shown below:&lt;/P&gt;
&lt;PRE&gt;filebeat.prospectors:
- type: log
  enabled: true
  paths:
    - %TAC_installation_path%/tac/logs/*.log
  fields:
    app_id: TAC
  fields_under_root: true
- type: log
  enabled: true
  paths:
    - %TAC_installation_path%/tac/apache-tomcat/logs/*.log
  fields:
    app_id: TAC_APACHE_TOMCAT
  fields_under_root: true&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Restart the Filebeat service.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Kibana portal results&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;The following Kibana portal screenshots show two log entries related to logout and login:&lt;/P&gt;
&lt;PRE&gt;(filter - application.keyword: “TAC”)&lt;/PRE&gt;
&lt;P class="lia-indent-padding-left-30px"&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="0693p000008uMNNAA2.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124756i8EDA8832E2989835/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uMNNAA2.png" alt="0693p000008uMNNAA2.png" /&gt;&lt;/span&gt;&lt;/SPAN&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="0693p000008uMNSAA2.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121860iF118480E7B3EE47E/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uMNSAA2.png" alt="0693p000008uMNSAA2.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For more information on configuring Talend components with Filebeat, see the following Talend Community Knowledge Base (KB) articles:&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;&lt;A href="https://community.qlik.com/t5/Migration-Configuration-and-Administration/Configuring-JobServer-and-ESB-Runtime-with-Filebeat/ta-p/2150748" target="_blank" rel="noopener"&gt;Configuring JobServer and ESB Runtime with Filebeat&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://community.qlik.com/t5/Migration-Configuration-and-Administration/Configuring-Master-Data-Management-with-Filebeat/ta-p/2150749" target="_blank" rel="noopener"&gt;Configuring Master Data Management with Filebeat&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&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>Configuring Talend Administration Center with Filebeat</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Configuring-Talend-Administration-Center-with-Filebeat/ta-p/2150753</link>
      <description>&lt;P&gt;This is a continuation of the Talend Community Knowledge Base article, &lt;A href="https://community.qlik.com/t5/Ready-for-Go-Live/Talend-logging-using-Filebeat/ta-p/2151665" target="_blank" rel="noopener"&gt;Talend logging using Filebeat&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Depending on your Talend Administration Center (TAC) installation (single component or Talend bundle component), TAC can be installed alone or with Filebeat.&lt;/P&gt;
&lt;P&gt;If Filebeat is not part of the installation, copy a Filebeat installation folder from another installation folder (for example, the one installed with &lt;A href="https://community.qlik.com/t5/Ready-for-Go-Live/Talend-logging-using-Filebeat/ta-p/2151665" target="_blank" rel="noopener"&gt;Talend logging using Filebeat&lt;/A&gt;), and configure a dedicated service.&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Configuring Talend Administration Center portal&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN&gt;Talend Administration Center&lt;/SPAN&gt; uses two files to collect technical and business logs. Configure these files on &lt;SPAN&gt;Talend Administration Center (TAC)&amp;nbsp;&lt;/SPAN&gt;by performing the following steps.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Log in to TAC.&lt;/LI&gt;
&lt;LI&gt;Change the location of the &lt;STRONG&gt;Technical&lt;/STRONG&gt; and &lt;STRONG&gt;Business&lt;/STRONG&gt; logs in the &lt;STRONG&gt;Logs&lt;/STRONG&gt; section on the TAC &lt;STRONG&gt;Configuration&lt;/STRONG&gt; page, as follows:
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;Technical file appender: &lt;STRONG&gt;&lt;EM&gt;%TAC_installation%&lt;/EM&gt;/tac/logs/technical.log&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Business log file path: &lt;STRONG&gt;&lt;EM&gt;%TAC_installation%&lt;/EM&gt;/tac/logs/business.log&lt;/STRONG&gt;&lt;/LI&gt;
&lt;/UL&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="0693p000008uMNIAA2.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/123719iCE9700CD53D047DD/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uMNIAA2.png" alt="0693p000008uMNIAA2.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;These files and folders should be created manually on the machine, and the TAC service user should have permission on it.&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Configuring Filebeat&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;Configure Filebeat, on the installation location, to permit Log Server to redirect logs to a specific logstash instance.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;Open the &lt;STRONG&gt;&lt;EM&gt;%TAC_installation%&lt;/EM&gt;/filebeat/filebeat.yml&lt;/STRONG&gt; file and change &lt;STRONG&gt;output.logstash: &amp;gt; hosts:&lt;/STRONG&gt; with the location of your Log Server, as shown below:&lt;/P&gt;
&lt;PRE&gt;output.logstash:
 # The Logstash hosts
 hosts: ["logserver_ip:5044"]
 #hosts: ["localhost:5044"]&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Change the &lt;STRONG&gt;filebeat.prospectors:&lt;/STRONG&gt; section. By default, there are already two sub-sections, identified by &lt;STRONG&gt;fields &amp;gt; app_id:&lt;/STRONG&gt; &lt;STRONG&gt;TAC&lt;/STRONG&gt; and &lt;STRONG&gt;DQ&lt;/STRONG&gt; (out of scope, not reported).&lt;/P&gt;
&lt;PRE&gt;filebeat.prospectors:
- type: log 
  enabled: true 
  paths: 
    - %TAC_installation_path%/tac/logs/*.log 
  fields: 
    app_id: TAC 
  fields_under_root: true&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Ensure that the paths in the TAC section point to the same location of the logs you configured on TAC portal.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: It is also possible to redirect the apache-tomcat logs by creating a new sub-section, as shown below:&lt;/P&gt;
&lt;PRE&gt;filebeat.prospectors:
- type: log
  enabled: true
  paths:
    - %TAC_installation_path%/tac/logs/*.log
  fields:
    app_id: TAC
  fields_under_root: true
- type: log
  enabled: true
  paths:
    - %TAC_installation_path%/tac/apache-tomcat/logs/*.log
  fields:
    app_id: TAC_APACHE_TOMCAT
  fields_under_root: true&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Restart the Filebeat service.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Kibana portal results&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P&gt;The following Kibana portal screenshots show two log entries related to logout and login:&lt;/P&gt;
&lt;PRE&gt;(filter - application.keyword: “TAC”)&lt;/PRE&gt;
&lt;P class="lia-indent-padding-left-30px"&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="0693p000008uMNNAA2.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/124756i8EDA8832E2989835/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uMNNAA2.png" alt="0693p000008uMNNAA2.png" /&gt;&lt;/span&gt;&lt;/SPAN&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="0693p000008uMNSAA2.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/121860iF118480E7B3EE47E/image-size/large?v=v2&amp;amp;px=999" role="button" title="0693p000008uMNSAA2.png" alt="0693p000008uMNSAA2.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For more information on configuring Talend components with Filebeat, see the following Talend Community Knowledge Base (KB) articles:&lt;/P&gt;
&lt;UL class="lia-list-style-type-circle"&gt;
&lt;LI&gt;&lt;A href="https://community.qlik.com/t5/Migration-Configuration-and-Administration/Configuring-JobServer-and-ESB-Runtime-with-Filebeat/ta-p/2150748" target="_blank" rel="noopener"&gt;Configuring JobServer and ESB Runtime with Filebeat&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://community.qlik.com/t5/Migration-Configuration-and-Administration/Configuring-Master-Data-Management-with-Filebeat/ta-p/2150749" target="_blank" rel="noopener"&gt;Configuring Master Data Management with Filebeat&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 23 Jan 2024 02:35:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Configuring-Talend-Administration-Center-with-Filebeat/ta-p/2150753</guid>
      <dc:creator>TalendSolutionExpert</dc:creator>
      <dc:date>2024-01-23T02:35:30Z</dc:date>
    </item>
  </channel>
</rss>

