Scheduling a job in pentaho 5.1 setting logging information to Email

2.4k views Asked by At

In pentaho [PDI(Kettle)] 5.1 version after scheduling job i have set email to the transformation in job if job fails email has send to the mail where the error occured.If i want to see detailed log information what happening during scheduling. How to set that please help me in this issue

E:\PENTAHO\data-integration\Kitchen.bat /file:E:\PENTAHO\rml_app_profile.kjb ./rml_app_profile.kjb.log

1

There are 1 answers

7
Rishu S On

There are two ways of getting the logging level:

  1. Using the level argument:: /level:Detailed like:

    kitchen.bat /file:E:\someKettleJob.kjb /level:Detailed

  2. You can use the Kettle logging system itself to get the detailed logging (in the Transformation settings). Check the image below

enter image description here

In your case, you can modify your code as below:

E:\PENTAHO\data-integration\Kitchen.bat /file:E:\PENTAHO\rml_app_profile.kjb /level:Detailed >> E:\rml_app_profile.log

Hope it helps :)