How to get list of scheduled tasks and last run results in ColdFusion?

后端 未结 3 1327
离开以前
离开以前 2021-02-02 12:57

We\'re trying to build a dashboard for our cron jobs ---- CF, Java, SQLServer, etc. so that we can see when things were run last, what the result was, and when they\'re schedule

3条回答
  •  温柔的废话
    2021-02-02 13:23

    It is possible to "Publish" the results of the job. The response from the HTTP request can be written to the file server, and that will have the values of the last run job.

    
    

    Then you can verify the log against the database if you wanted. Since it is the response from the page, you can get and store errors and warnings here as well.

提交回复
热议问题