Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More

How to generate a trace for the HTTP requests executed by Studio

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

How to generate a trace for the HTTP requests executed by Studio

Last Update:

Feb 6, 2024 10:10:57 AM

Updated By:

Jamie_Gregory

Created date:

Apr 22, 2022 9:51:37 AM

Question

How do you generate a trace of the HTTP requests executed by the Talend Studio without using a third-party tool?

 

Answer

1. Create a logging.properties file (in the c:\temp folder for example) containing the following lines:

.level=FINEST
handlers = java.util.logging.FileHandler
java.util.logging.FileHandler.pattern = c:/temp/debug.txt
java.util.logging.FileHandler.limit = 20480KB
java.util.logging.FileHandler.count = 10
java.util.logging.FileHandler.append = true
java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter
 

2. Create a log4j.properties file (in the c:\temp folder for example) containing the following lines:

log4j.rootLogger=INFO, stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n
log4j.logger.org.apache.http=DEBUG
log4j.logger.org.apache.http.wire=DEBUG


Note: the trace generated does not contain all the body of the HTTP requests. If you want to log the body of the HTTP requests and responses, use a HTTP proxy, such as Fiddler.

 

3. Start Talend Studio  by using the following commands:

On Windows : from a CMD window , execute the following 2 commands :

set _JAVA_OPTIONS=-Dlog4j.debug -Dlog4j.configuration=file:"c:\temp\log4j.properties" -Djava.util.logging.config.file=c:\temp\logging.properties
Talend-Studio-win-x86_64.exe --talendDebug > studio_debug.txt 2>&1
0EM5b000007WFeh.png


On Linux : from a shell terminal , execute the following 2 commands :

export _JAVA_OPTIONS='-Dlog4j.debug -Dlog4j.configuration=file:"/tmp/log4j.properties" -Djava.util.logging.config.file=/tmp/logging.properties'
Talend-Studio-linux-gtk-x86_64 --talendDebug > studio_debug.txt 2>&1
 

 

NOTE : On Linux , "adapt" the file  logging.properties :

java.util.logging.FileHandler.pattern = /tmp/debug.txt

Collect the 2 files : studio_debug.txt and debug.txt
Version history
Last update:
‎2024-02-06 10:10 AM
Updated by: