Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

How to know scheduled job run time?

Abhi33
Tera Expert

Hi,

How to know the time taken by a scheduled job to complete the run?

1 ACCEPTED SOLUTION

Arav
Tera Guru

Hi Abhi,

Please try this.

Go to https://<your instance URL>/syslog_transaction_list.do?sysparm_query=urlLIKE<your scheduled job name> and check the "Transaction processing time" column.

Alternatively, you can also add loggers in the scheduled job to track the time taken as indicated by Aman above. You can also take it to the next level by using Stop Watch API (see below for details).

https://developer.servicenow.com/dev.do#!/reference/api/rome/client/c_StopWatchAPI

Thanks,

Arav

View solution in original post

5 REPLIES 5

Arav
Tera Guru

Hi Abhi,

Please try this.

Go to https://<your instance URL>/syslog_transaction_list.do?sysparm_query=urlLIKE<your scheduled job name> and check the "Transaction processing time" column.

Alternatively, you can also add loggers in the scheduled job to track the time taken as indicated by Aman above. You can also take it to the next level by using Stop Watch API (see below for details).

https://developer.servicenow.com/dev.do#!/reference/api/rome/client/c_StopWatchAPI

Thanks,

Arav