Question

Job Monitor

  • 23 April 2022
  • 5 replies
  • 65 views

I want to shot one mail when my specific jon change its status from Active to Inactive or Inactive error.

Please help


5 replies

Userlevel 4
Badge

@deepu you can create subscription for Job Status Change which will triggers the subscription each time a job status changes.

 

Please checkout the doc for more details : https://docs.streamsets.com/portal/platform-controlhub/controlhub/UserGuide/Subscriptions/Subscriptions_title.html 

Hi Rishi,

 

thanks for the reply. Is it possible to send mail when job is running for more than specific hours?

Userlevel 4
Badge

Hii @deepu There is an Idle Alert if the pipeline really is idle. You can check more details here

https://docs.streamsets.com/portal/datacollector/4.4.x/help//datacollector/UserGuide/Alerts/RulesAlerts_title.html#concept_qyv_1tf_qv

AFAIK, there is no dynamic time based trigger condition.

Also, Can you share more details on what is your use-case and why you wanted to have trigger condition like this.

Sometimes, job runs for hours because of some underlying issue. lets take an example for my use case.

We have one orchestration job which send mail notification on completion. But, due to some incorrect mail id mentioned in the job, job is unable to find the Id and is running for more than 5 hours and will run more if don’t stop it. We could see error message in the logs.

Userlevel 4
Badge

Hi @deepu , As I mentioned in my previous update.you can try setting idle alert at pipeline level . this will trigger alert if pipeline is idle due to any reason. 
https://docs.streamsets.com/portal/datacollector/4.4.x/help//datacollector/UserGuide/Alerts/RulesAlerts_title.html#concept_qyv_1tf_qv

time.now()

Returns the current time of the Data Collector machine as a java.util.Date object. Use in conditions for gauge metric rules.For example, the default rule for the Runtime Statistics Gauge metric that checks whether the pipeline is idle includes the following condition:

${time:now() - value() > 120000}

The alert is triggered when the current time is greater than the time of the last received record by 120,000 milliseconds.

Reply