Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
wangbinlxx
Creator
Creator

How to add alerts for error jobs in Talend Cloud?

Hi

In Talend Administration Center, there are "Talend Activity Monitoring Console (AMC)" and "Talend Log Server" .  

I query the Admin DB to alert jobs, which are failed or hung.  

SELECT talendjobname,
talendjobversion,
basicstatus,
detailedstatus,
serverjobstartdate,
serverjobenddate,
expectedtriggeringdate,
triggeredby
FROM Talend_Admin.taskexecutionhistory h
WHERE basicstatus != 'OK'
AND basicstatus != 'KILLED'
AND basicstatus != 'RUNNING'
AND serverjobenddate > Subdate(CURRENT_DATE, "+ context.ChecknDateBack+")
OR basicstatus = 'RUNNING'
AND serverjobstartdate <Subdate(CURRENT_DATE, INTERVAL 3 HOUR)
OR basicstatus = 'MISFIRED'
AND expectedtriggeringdate > Subdate(CURRENT_DATE, "+ context.ChecknDateBack+") ;

 

In Talend Cloud, I can check operations=>activity for error job graph. However,

1. I cannot setup access Admin DB for any alerts;

2. I don't know if tStatCatcher/tLogCatcher/tFlowMeterCatcher still work;

3. No AMC for the above stats.

 

How to add alerts for error jobs in Talend Cloud?

 

Thanks,

Bin

 

1 Reply
wangbinlxx
Creator
Creator
Author

Can anyone help me on this?

Thanks,