Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dec 10, 2025 10:00:26 PM
Xiaodi_Shi
Dec 10, 2025 10:02:58 PM
To retrieve the task with the status "Misfired" via API, you can use the API "/monitoring/observability/executions/search" mentioned below:
#type_searchrequest | talend.qlik.dev .
However, EXECUTION_MISFIRED status returned only if "exclude=TASK_EXECUTIONS_TRIGGERED_BY_PLAN"
So if you want to return any plans or tasks that are misfired, you should send this filter request:
"filters": [ { "field": "status", "operator": "in", "value": [ "DEPLOY_FAILED", "EXECUTION_MISFIRED"
Example
URL: https://api.<region>.cloud.talend.com/monitoring/observability/executions/search
{ "environmentId": "123456......", "category": "ETL", "filters": [ { "field": "status", "operator": "in", "value": [ "DEPLOY_FAILED", "EXECUTION_MISFIRED" ] } ], "limit": 50, "offset": 0, "exclude": "TASK_EXECUTIONS_TRIGGERED_BY_PLAN" }
Jira ID: SUPPORT-7251