Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. READ MORE

How to configure observability metrics with Talend Cloud and Remote Engine

No ratings
cancel
Showing results for 
Search instead for 
Did you mean: 
TalendSolutionExpert
Contributor II
Contributor II

How to configure observability metrics with Talend Cloud and Remote Engine

Last Update:

Jul 8, 2024 7:57:19 AM

Updated By:

Sonja_Bauernfeind

Created date:

Oct 20, 2021 12:10:28 PM

Attachments

You can observe your Data Integration Jobs running on Talend Remote Engines if your Jobs are scheduled to run on Talend Remote Engine version 2.9.2 or later.

This is a step-by-step guide on how Talend Cloud Management Console can provide the data needed to build your own customized dashboards, with an example of how to ingest and consume data from Microsoft Azure Monitor.

Once you have set up the metric and log collection system in Talend Remote Engine and your Application Performance Monitoring (APM) tool, you can design and organize your dashboards thanks to the information sent from Talend Cloud Management Console to APM through the engine.

Content:

 

Prerequisites

This document has been tested on the following products and versions running in a Talend Cloud environment:

Optional requirements for obtaining detailed Job statistics:

  • Studio 7.3.1 R2020-07 – downloaded from the Talend Cloud Portal and updated with the appropriate monthly patch
  • Republish your Jobs from the new version of Studio to Talend Cloud Management Console

 

Configuring and starting the remote engine

To configure the files and check that the Remote Engine is running, navigate to the Monitoring Job runs on Remote Engines section of the Talend Remote Engine User Guide for Linux

 

Get the metric details from the API

Use any REST client, such as Talend API Tester or Postman, and use the endpoint as explained below.

  1. Endpoint:
    GET http://ip_where_RE_is_installed:8043/metrics/json
    8043 is the default http port of Remote Engines. Replace it with the port you used when installing the Remote Engine.
  2. Add a header: Authorization Bearer {token}.
    This token is defined in the etc/org.talend.observability.http.security.cfg file as endpointToken={token}.
  3. Example:
    GET http://localhost:8043/metrics/json
            Authorization Bearer F7VvcRAC6T7aArU
    json request localhost.png
    jseon request localhost and response.png

 

Push metric to Azure logs workspace

There are numerous ways to push the metric results to any analytics and visualization tool. This document shows how to use the Azure monitor HTTP data collector API to push the metrics to an Azure log workspace. Python code is also used to send the logs in batch mode at frequent intervals. Alternatively, you can create a Talend Job as a service for real-time metric extraction. For more information, see the attached Job and Python Code.zip file.

The logs are pushed to the Azure Log Analytics workspace as “custom logs”.


rslogws logs in microsoft azure.png

 

 

Observable metrics

Talend Cloud Management Console provides metrics through Talend Remote Engine. They can be integrated in your APM tool to observe your Jobs.  

For the list of available metrics, see Available metrics for monitoring in the Talend Remote Engine User Guide for Linux

 

Queries and dashboard example

Report One: A sample report for the number of rows processed by a component within the overall run

Query:

Remote_Engine_OBS_CL 
|where TimeGenerated > ago(2d)
|where name_s=='component_connection_rows_total' 
|summarize sum(value_d) by context_target_connector_type_s
|render piechart

 

Chart:

chart example.png

 

Report Two: A sample report to showcase the average time taken by each component grouped by Job

Query:

Remote_Engine_OBS_CL 
|where TimeGenerated > ago(2d)
|where name_s=='component_execution_duration_seconds'
|summarize count(), avg(value_d) by context_artifact_name_s,context_connector_label_s

 

Chart:

chart example number two.png
 

Report Three: A sample report to showcase OS memory and file storage available in MB

Query:

Remote_Engine_OBS_CL 
|where name_s=='os_memory_bytes_available' or name_s =='os_filestore_bytes_available'
|summarize sum(value_d)/1000000 by name_s

Chart:

chart example number three.png

 

Report Four: A sample report to showcase all jvm_process_cpu_load events counted in the last two days, in 15-minute intervals

Query: 

Remote_Engine_OBS_CL 
|where TimeGenerated > ago(2d)
|where name_s =='jvm_process_cpu_load'
|summarize events_count=sum(value_d) by bin(TimeGenerated, 15m), context_artifact_name_s
|render timechart

 Chart:

chart example number four.png

 

Azure dashboard

Pin the reports to the Azure dashboard

Chart Examples Azure.png

 

Sample Talend Data Integration Job

This section explains the sample Job used to send the metric logs to the Azure log workspace. This Job is available in the attached Job and Python Code.zip file.

Job structure

Sample Talend Data Integration Job.png

 

Job details

The components used and their detailed configurations are explained below.

tREST

Component to make a REST API Get call.

Component to make a REST API Get call.png

 

tJavaRow

The component used to print the response from the API call.

The component to print the response from the API call.png

tFileOutputRaw

The component used to create a JSON file with the API response body.

component used to create a JSON file with the API response body.png

tSystem

Component to call the Python code.

Component to call the Python code.png

tJava

tjava 1.png

 

Related Content

Log management and monitoring in Talend Cloud.

Labels (2)
Comments
test1233
Employee
Employee

Hello Team, The job attachments are missing. Please advise. Thank you 

Sonja_Bauernfeind
Digital Support
Digital Support

@test1233 

Thank you for highlighting this. The attachment is now available.

All the best,
Sonja 

Version history
Last update:
3 hours ago
Updated by: